diff --git a/Installation/CHANGES.md b/Installation/CHANGES.md index b070ea3516b..451e0aeda8c 100644 --- a/Installation/CHANGES.md +++ b/Installation/CHANGES.md @@ -35,7 +35,7 @@ Release date: October 2023 - Removed the class templates `Gray_image_mesh_domain_3`, `Implicit_mesh_domain_3`, and `Labeled_image_mesh_domain_3` which are deprecated since CGAL-4.13. -- Added new meshing criterion `distance_bound`, an upper bound for the distance from the edge to the 1D feature. +- Added new meshing criterion `edge_distance`, an upper bound for the distance from the edge to the 1D feature. ### [Polygon Mesh Processing](https://doc.cgal.org/6.0/Manual/packages.html#PkgPolygonMeshProcessing) diff --git a/Mesh_3/doc/Mesh_3/Concepts/MeshCriteria_3.h b/Mesh_3/doc/Mesh_3/Concepts/MeshCriteria_3.h index c9fb5ddb290..cd3027b727e 100644 --- a/Mesh_3/doc/Mesh_3/Concepts/MeshCriteria_3.h +++ b/Mesh_3/doc/Mesh_3/Concepts/MeshCriteria_3.h @@ -34,7 +34,7 @@ public: /*! Functor that describes the criteria for -mesh edges. This type must be a model +mesh feature edges. This type must be a model of the concept `MeshEdgeCriteria_3`. */ typedef unspecified_type Edge_criteria; diff --git a/Mesh_3/doc/Mesh_3/Mesh_3.txt b/Mesh_3/doc/Mesh_3/Mesh_3.txt index 1acfb81f978..612c6bb2c53 100644 --- a/Mesh_3/doc/Mesh_3/Mesh_3.txt +++ b/Mesh_3/doc/Mesh_3/Mesh_3.txt @@ -1036,7 +1036,7 @@ current polyline feature does not belong to. The following example shows how to generate a mesh with an approximation error criterion. Polyline features are covered by a set of so-called "protecting balls" which -sizes are highly related to the edge length and the edge distance. +sizes are highly related to the `edge_size` and `edge_distance` criteria. This edge distance is driven by the distance component of `Mesh_edge_criteria_3` (see Section \ref Mesh_3Protectionof0and1dimensionalExposed). The parameter `edge_distance` enables the subdivision of edges that are too far away from the corresponding input sharp features.