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:
bonsaiiV 2025-09-22 20:27:03 +00:00 committed by GitHub
parent 4c97f3ea85
commit 71446c9c54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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;
/// @} /// @}