diff --git a/Poisson_surface_reconstruction_3/examples/Poisson_surface_reconstruction_3/poisson_reconstruction.cpp b/Poisson_surface_reconstruction_3/examples/Poisson_surface_reconstruction_3/poisson_reconstruction.cpp index e1cf5e39d8b..be3a47e7894 100644 --- a/Poisson_surface_reconstruction_3/examples/Poisson_surface_reconstruction_3/poisson_reconstruction.cpp +++ b/Poisson_surface_reconstruction_3/examples/Poisson_surface_reconstruction_3/poisson_reconstruction.cpp @@ -196,7 +196,7 @@ int main(int argc, char * argv[]) !CGAL::read_xyz_points_and_normals( stream, std::back_inserter(points), - CGAL::make_normal_of_point_with_normal_pmap(PointList::value_type()))) + CGAL::make_normal_of_point_with_normal_map(PointList::value_type()))) { std::cerr << "Error: cannot read file " << input_filename << std::endl; return EXIT_FAILURE; @@ -252,7 +252,7 @@ int main(int argc, char * argv[]) Poisson_reconstruction_function function( points.begin(), points.end(), CGAL::make_identity_property_map(PointList::value_type()), - CGAL::make_normal_of_point_with_normal_pmap(PointList::value_type()), + CGAL::make_normal_of_point_with_normal_map(PointList::value_type()), visitor); #ifdef CGAL_EIGEN3_ENABLED diff --git a/Poisson_surface_reconstruction_3/examples/Poisson_surface_reconstruction_3/poisson_reconstruction_example.cpp b/Poisson_surface_reconstruction_3/examples/Poisson_surface_reconstruction_3/poisson_reconstruction_example.cpp index aa063c36821..2f8912bc098 100644 --- a/Poisson_surface_reconstruction_3/examples/Poisson_surface_reconstruction_3/poisson_reconstruction_example.cpp +++ b/Poisson_surface_reconstruction_3/examples/Poisson_surface_reconstruction_3/poisson_reconstruction_example.cpp @@ -47,7 +47,7 @@ int main(void) !CGAL::read_xyz_points_and_normals( stream, std::back_inserter(points), - CGAL::make_normal_of_point_with_normal_pmap(PointList::value_type()))) + CGAL::make_normal_of_point_with_normal_map(PointList::value_type()))) { std::cerr << "Error: cannot read file data/kitten.xyz" << std::endl; return EXIT_FAILURE; @@ -59,7 +59,7 @@ int main(void) // + property maps to access each point's position and normal. // The position property map can be omitted here as we use iterators over Point_3 elements. Poisson_reconstruction_function function(points.begin(), points.end(), - CGAL::make_normal_of_point_with_normal_pmap(PointList::value_type()) ); + CGAL::make_normal_of_point_with_normal_map(PointList::value_type()) ); // Computes the Poisson indicator function f() // at each vertex of the triangulation.