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