From f8abb836a05526067043d16b93b5cf94c970798a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 4 Jun 2024 17:39:15 +0200 Subject: [PATCH] Use the correct enum value --- .../include/CGAL/Triangulation_on_sphere_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Triangulation_on_sphere_2/include/CGAL/Triangulation_on_sphere_2.h b/Triangulation_on_sphere_2/include/CGAL/Triangulation_on_sphere_2.h index 98c2949173c..4a7667d20bf 100644 --- a/Triangulation_on_sphere_2/include/CGAL/Triangulation_on_sphere_2.h +++ b/Triangulation_on_sphere_2/include/CGAL/Triangulation_on_sphere_2.h @@ -1258,7 +1258,7 @@ is_plane() const while(it4 != vertices_end()) { Orientation s = orientation(point(it1), point(it2), point(it3), point(it4)); - is_plane = is_plane && s == COLLINEAR; + is_plane = is_plane && s == COPLANAR; if(!is_plane) return false;