From 8e30faabcb11aef39a6e2bc02933175ff1f6a672 Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Wed, 16 Apr 2008 15:27:08 +0000 Subject: [PATCH] Remove PCA_dimension_0_tag() from call to centroid() --- .../include/CGAL/Poisson_implicit_function.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_reconstruction_3/include/CGAL/Poisson_implicit_function.h b/Surface_reconstruction_3/include/CGAL/Poisson_implicit_function.h index d5d514b310e..0b76beee0ad 100644 --- a/Surface_reconstruction_3/include/CGAL/Poisson_implicit_function.h +++ b/Surface_reconstruction_3/include/CGAL/Poisson_implicit_function.h @@ -1061,7 +1061,7 @@ private: if(tet.has_on_unbounded_side(c)) { Point cell_points[4] = {pi,pj,pk,pl}; - c = CGAL::centroid(cell_points, cell_points+4,PCA_dimension_0_tag()); + c = CGAL::centroid(cell_points, cell_points+4); } Point ck = CGAL::circumcenter(pi,pj,pk);