Merge pull request #959 from janetournois/PMP-isotropic_remeshing_made_verbose-jtournois

Polyhedron demo : add verbosity to isotropic_remeshing plugin
This commit is contained in:
Laurent Rineau 2016-04-01 11:17:49 +02:00
commit 4f599d5310
1 changed files with 4 additions and 0 deletions

View File

@ -570,6 +570,8 @@ private:
}
else
{
std::cout << "Isotropic remeshing of "
<< poly_item->name().toStdString() << " started..." << std::endl;
Scene_polyhedron_selection_item::Is_constrained_map<Edge_set > ecm(edges_to_protect);
CGAL::Polygon_mesh_processing::isotropic_remeshing(
faces(*poly_item->polyhedron())
@ -579,6 +581,8 @@ private:
.protect_constraints(protect_)
.edge_is_constrained_map(ecm)
.smooth_along_features(smooth_features_));
std::cout << "Isotropic remeshing of "
<< poly_item->name().toStdString() << " done." << std::endl;
}
}