From 2a90c31f77ac18cd394c71d3898bb1a8de3e6912 Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Thu, 24 Jun 2021 12:08:05 +0200 Subject: [PATCH] document the new named parameters --- .../CGAL/Polygon_mesh_processing/remesh.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/remesh.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/remesh.h index b3257693e8c..b011b2d61b6 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/remesh.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/remesh.h @@ -132,6 +132,24 @@ namespace Polygon_mesh_processing { * \cgalParamExtra{The map is updated during the remeshing process while new faces are created.} * \cgalParamNEnd * +* \cgalParamNBegin{do_split} +* \cgalParamDescription{whether edges that are too long with respect to the given sizing are split} +* \cgalParamType{Boolean} +* \cgalParamDefault{`true`} +* \cgalParamNEnd +* +* \cgalParamNBegin{do_collapse} +* \cgalParamDescription{whether edges that are too short with respect to the given sizing are collapsed} +* \cgalParamType{Boolean} +* \cgalParamDefault{`true`} +* \cgalParamNEnd +* +* \cgalParamNBegin{do_flip} +* \cgalParamDescription{whether edge flips are performed to improve shape and valence} +* \cgalParamType{Boolean} +* \cgalParamDefault{`true`} +* \cgalParamNEnd +* * \cgalParamNBegin{number_of_relaxation_steps} * \cgalParamDescription{the number of iterations of tangential relaxation that are performed * at each iteration of the remeshing process}