This commit is contained in:
Maxime Gimeno 2018-05-04 16:05:05 +02:00
parent 47635f11fe
commit 9327e470c1
2 changed files with 10 additions and 6 deletions

View File

@ -1,6 +1,14 @@
Release History
===============
Release 4.13
------------
### Polygon Mesh Processing
- Added a new named parameter for stitching that allows to perform
this operation per connected component instead of globally
Release 4.12
------------
@ -151,8 +159,6 @@ Release date: April 2018
- `CGAL::Polygon_mesh_processing::detect_vertex_incident_patches()`
- `CGAL::Polygon_mesh_processing::sharp_edges_segmentation()`
- Added a new named parameter for stitching that allows to perform
this operation per connected component instead of globally
### Point Set Shape Detection

View File

@ -600,13 +600,11 @@ void stitch_borders(PolygonMesh& pmesh,
/// `CGAL::vertex_point_t` should be available in `PolygonMesh`\cgalParamEnd
/// \cgalParamBegin{apply_per_connected_component}
/// specifies if the borders should only be stitched inside their own connected component.
/// In that case, a property map for `CGAL::face_index_t` should be either available as an internal property map
/// to `pmesh` or provided as the \ref pmp_namedparameters "Named Parameter" `face_index_map`.
/// Default value is `false`.\cgalParamEnd
/// \cgalParamBegin{face_index_map} a property map containing the index of each face of `pmesh` \cgalParamEnd
/// \cgalNamedParamsEnd
///
/// @attention A property map for `CGAL::face_index_t` should be either available as an internal property map
/// to `pmesh` or provided as one of the \ref pmp_namedparameters "Named Parameters" if `apply_per_connected_component`
/// is `true`.
template <typename PolygonMesh, class CGAL_PMP_NP_TEMPLATE_PARAMETERS>
void stitch_borders(PolygonMesh& pmesh, const CGAL_PMP_NP_CLASS& np)