From 677908e405b024e01e4495b75ef581a6dca5e024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Fri, 30 Aug 2019 13:57:56 +0200 Subject: [PATCH] Fix NP usage --- .../hausdorff_bounded_error_distance_example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/examples/Polygon_mesh_processing/hausdorff_bounded_error_distance_example.cpp b/Polygon_mesh_processing/examples/Polygon_mesh_processing/hausdorff_bounded_error_distance_example.cpp index c0a18953ac2..491573b68f2 100644 --- a/Polygon_mesh_processing/examples/Polygon_mesh_processing/hausdorff_bounded_error_distance_example.cpp +++ b/Polygon_mesh_processing/examples/Polygon_mesh_processing/hausdorff_bounded_error_distance_example.cpp @@ -103,7 +103,7 @@ int main(int argc, char** argv) // Copy the mesh and perturb it slightly tm2 = tm1; bool do_project = false; - PMP::random_perturbation( tm2.vertices(), tm2, 0.1, do_project ); + PMP::random_perturbation( tm2.vertices(), tm2, 0.1, CGAL::parameters::do_project(do_project)); std::cout << "Perturbed the input mesh, now computing the Hausdorff distance." << std::endl; // Compute the Hausdorff distance