Apply suggestions from code review

Co-authored-by: Sebastien Loriot <sloriot.ml@gmail.com>
This commit is contained in:
Dimitris Papavasiliou 2022-08-22 19:48:37 +03:00
parent 63076fa8b3
commit b8f18423b6
1 changed files with 3 additions and 2 deletions

View File

@ -515,12 +515,13 @@ public:
/// \cgalAdvancedFunction
/// \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
/// 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
/// vertices fixed in place.
/// \tparam InputIterator a model of `InputIterator` with `boost::graph_traits<TriangleMesh>::%vertex_descriptor` as value type.
/// \cgalAdvancedEnd
template<class InputIterator>
void set_fixed_vertices(InputIterator begin, InputIterator end)