From f320bdee4350abb0df9dced7d65865bbaf8b9412 Mon Sep 17 00:00:00 2001 From: Clement Jamin Date: Mon, 12 Jan 2015 14:56:03 +0100 Subject: [PATCH] Temporary bug fix Do not insert a point when an already existing point in at the same place. TODO: something better when the weight is different. --- Triangulation/include/CGAL/Regular_triangulation.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Triangulation/include/CGAL/Regular_triangulation.h b/Triangulation/include/CGAL/Regular_triangulation.h index 0a44a9fce9d..dbf66a91380 100644 --- a/Triangulation/include/CGAL/Regular_triangulation.h +++ b/Triangulation/include/CGAL/Regular_triangulation.h @@ -823,7 +823,7 @@ Regular_triangulation case Base::ON_VERTEX: { Vertex_handle v = s->vertex(f.index(0)); - v->set_point(p); + //v->set_point(p); // CJTODO see T3.h l.3570 return v; break; } @@ -885,7 +885,7 @@ Regular_triangulation case Base::ON_VERTEX: { Vertex_handle v = s->vertex(f.index(0)); - v->set_point(p); + //v->set_point(p); // CJTODO see T3.h l.3570 return v; break; }