From ec84ec13f778ff2e22659923a434b0ba103424c5 Mon Sep 17 00:00:00 2001 From: Pedro Machado Manhaes de Castro Date: Wed, 17 Jun 2009 09:00:37 +0000 Subject: [PATCH] orientation_2 -> orientation --- Triangulation_2/include/CGAL/Triangulation_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Triangulation_2/include/CGAL/Triangulation_2.h b/Triangulation_2/include/CGAL/Triangulation_2.h index a372c01f211..127a6b3e640 100644 --- a/Triangulation_2/include/CGAL/Triangulation_2.h +++ b/Triangulation_2/include/CGAL/Triangulation_2.h @@ -479,7 +479,7 @@ bool well_oriented(Vertex_handle v) Vertex_handle v0 = fc->vertex(0); Vertex_handle v1 = fc->vertex(1); Vertex_handle v2 = fc->vertex(2); - if(orientation_2(v0->point(),v1->point(),v2->point()) + if(orientation(v0->point(),v1->point(),v2->point()) != COUNTERCLOCKWISE) return false; } } while(++fc != done);