From 693b7a1e02e1d46208ea75cb0b1a92094d077a72 Mon Sep 17 00:00:00 2001 From: Claudia Werner Date: Tue, 22 Jan 2013 13:14:38 +0100 Subject: [PATCH] fixed bug in insert in DT (special cases). --- .../include/CGAL/Delaunay_triangulation_sphere_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Triangulation_on_sphere_2/include/CGAL/Delaunay_triangulation_sphere_2.h b/Triangulation_on_sphere_2/include/CGAL/Delaunay_triangulation_sphere_2.h index 3f052518d9e..7851c58e601 100644 --- a/Triangulation_on_sphere_2/include/CGAL/Delaunay_triangulation_sphere_2.h +++ b/Triangulation_on_sphere_2/include/CGAL/Delaunay_triangulation_sphere_2.h @@ -593,7 +593,7 @@ insert(const Point &p, Face_handle start) switch (lt){ case NOT_ON_SPHERE: return Vertex_handle(); - case TOO_CLOSE:{ + case TOO_CLOSE:{ if(dimension()==2) return loc->vertex(li); return Vertex_handle();