From b8933836fa7ffbd74f1236853b5a10902facbc5d Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Wed, 23 Jan 2019 09:31:35 +0100 Subject: [PATCH] Fix normal estimation parameter --- .../Plugins/Point_set/Point_set_normal_estimation_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_normal_estimation_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_normal_estimation_plugin.cpp index ab53c6c887b..784e49120e8 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_normal_estimation_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_normal_estimation_plugin.cpp @@ -235,7 +235,7 @@ void Polyhedron_demo_point_set_normal_estimation_plugin::on_actionNormalEstimati std::cerr << "Estimates normal direction by Jet Fitting (k=" << dialog.jet_neighbors() <<")...\n"; // Estimates normals direction. - Jet_estimate_normals_functor functor (points, dialog.pca_neighbors()); + Jet_estimate_normals_functor functor (points, dialog.jet_neighbors()); run_with_qprogressdialog (functor, "Estimating normals by jet fitting...", mw); std::size_t memory = CGAL::Memory_sizer().virtual_size();