mirror of https://github.com/CGAL/cgal
Fix doc
This commit is contained in:
parent
47635f11fe
commit
9327e470c1
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue