From 2f591dedd92c3442d92c62cf248a96bb1b4fd226 Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Mon, 20 Mar 2023 13:03:12 +0100 Subject: [PATCH] doc --- Mesh_3/include/CGAL/Mesh_edge_criteria_3.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Mesh_3/include/CGAL/Mesh_edge_criteria_3.h b/Mesh_3/include/CGAL/Mesh_edge_criteria_3.h index 8f8fdefa6e1..ffc5d8c5f2e 100644 --- a/Mesh_3/include/CGAL/Mesh_edge_criteria_3.h +++ b/Mesh_3/include/CGAL/Mesh_edge_criteria_3.h @@ -122,9 +122,15 @@ public: /// @{ /*! * Returns an object to serve as criteria for edges. - * The argument `length_bound` is an upper bound + * \param length_bound is an upper bound * for the length of the edges which are used to discretize the curves. - * Note that if one parameter is set to 0, then its corresponding criteria is ignored. + * \param min_length_bound is a lower bound + * for the length of the edges which are used to discretize the curves. + * Only edges that are longer than this bound will be refined. Using + * this lower bound can be handy on some domains, but using it may + * break all the surface topology guarantees of the meshing algorithm. + * + * Note that if one parameter is set to 0, then its corresponding criterion is ignored. */ Mesh_edge_criteria_3(const FT& length_bound, const FT& min_length_bound = 0.)