From dc3c2f9a8d69d5a0bc9b74f672fa55e1cdb15a71 Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Tue, 29 Mar 2016 14:57:48 +0200 Subject: [PATCH] add verbosity to isotropic_remeshing when it's called on several polyhedra, possibly in parallel --- .../Polyhedron/Plugins/PMP/Isotropic_remeshing_plugin.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Isotropic_remeshing_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Isotropic_remeshing_plugin.cpp index e2549ee3fcf..7f6e16cadce 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Isotropic_remeshing_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Isotropic_remeshing_plugin.cpp @@ -369,6 +369,8 @@ private: } else { + std::cout << "Isotropic remeshing of " + << poly_item->name().toStdString() << " started..." << std::endl; CGAL::Polygon_mesh_processing::isotropic_remeshing( faces(*poly_item->polyhedron()) , target_length_ @@ -376,6 +378,8 @@ private: , CGAL::Polygon_mesh_processing::parameters::number_of_iterations(nb_iter_) .protect_constraints(protect_) .smooth_along_features(smooth_features_)); + std::cout << "Isotropic remeshing of " + << poly_item->name().toStdString() << " done." << std::endl; } }