mirror of https://github.com/CGAL/cgal
Apply suggestions from code review
Co-authored-by: Sebastien Loriot <sloriot.ml@gmail.com>
This commit is contained in:
parent
63076fa8b3
commit
b8f18423b6
|
|
@ -515,12 +515,13 @@ public:
|
||||||
|
|
||||||
/// \cgalAdvancedFunction
|
/// \cgalAdvancedFunction
|
||||||
/// \cgalAdvancedBegin
|
/// \cgalAdvancedBegin
|
||||||
/// Fixes a range of vertices. Fixed vertices will not be moved
|
/// sets the vertices in the range `[begin, end)` as fixed. Fixed vertices will not be moved
|
||||||
/// during contraction and this will therefore prevent convergence
|
/// during contraction and this will therefore prevent convergence
|
||||||
/// towards the skeleton if `contract_until_convergence()` is used.
|
/// towards the skeleton if `contract_until_convergence()` is used.
|
||||||
/// It is only useful if the object is to retrieve the meso-skeleton
|
/// It is useful only if the end goal is to retrieve the meso-skeleton
|
||||||
/// after a number of `contract_geometry()`, keeping the specified
|
/// after a number of `contract_geometry()`, keeping the specified
|
||||||
/// vertices fixed in place.
|
/// vertices fixed in place.
|
||||||
|
/// \tparam InputIterator a model of `InputIterator` with `boost::graph_traits<TriangleMesh>::%vertex_descriptor` as value type.
|
||||||
/// \cgalAdvancedEnd
|
/// \cgalAdvancedEnd
|
||||||
template<class InputIterator>
|
template<class InputIterator>
|
||||||
void set_fixed_vertices(InputIterator begin, InputIterator end)
|
void set_fixed_vertices(InputIterator begin, InputIterator end)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue