From bd0917d7a9e34669d3d7b0d39cfb4eb3384301cf Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Thu, 13 Nov 2014 17:20:21 +0100 Subject: [PATCH] little cleaning --- .../CGAL/Constrained_voronoi_diagram_2.h | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/Triangulation_2/include/CGAL/Constrained_voronoi_diagram_2.h b/Triangulation_2/include/CGAL/Constrained_voronoi_diagram_2.h index 10113fd885b..bbd62ffd255 100644 --- a/Triangulation_2/include/CGAL/Constrained_voronoi_diagram_2.h +++ b/Triangulation_2/include/CGAL/Constrained_voronoi_diagram_2.h @@ -435,32 +435,6 @@ private: return false; } - -//---------------------------------------------------- -//------------------ TOOLS --------------------------- -//---------------------------------------------------- - - bool is_inside(const Point& query) - { - Face_handle f = locate(query); - if(f == NULL) - return false; - if(f->location() == INSIDE) - return true; - return false; - } - - bool incident_constraints(Vertex_handle v) - { - Edge_circulator e = incident_edges(v); - Edge_circulator end = e; - CGAL_For_all(e,end) - if((*e).first->is_constrained((*e).second)) - return true; - return false; - } - - };// class Constrained_voronoi_diagram } //namespace CGAL