mirror of https://github.com/CGAL/cgal
regular triangulation docs: fix all vertex iterators (#9093)
## Summary of Changes order of begin and end iterator was wrong and description did not match
This commit is contained in:
commit
95c7d809f7
|
|
@ -436,12 +436,12 @@ const;
|
|||
/*!
|
||||
starts at an arbitrary unhidden vertex.
|
||||
*/
|
||||
All_vertices_iterator all_vertices_end() const;
|
||||
All_vertices_iterator all_vertices_begin() const;
|
||||
|
||||
/*!
|
||||
past the end iterator.
|
||||
*/
|
||||
All_vertices_iterator all_vertices_begin() const;
|
||||
All_vertices_iterator all_vertices_end() const;
|
||||
|
||||
/// @}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue