mirror of https://github.com/CGAL/cgal
Changed distance_bound to edge_distance in CHANGES.md +
doc
This commit is contained in:
parent
7b8c90ec3b
commit
74b5429160
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue