From d8fcdee741a72f5b7d80d22a2a5fd89b9af0f6d7 Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Fri, 20 Oct 2023 15:57:58 +0200 Subject: [PATCH] document the order of vertices --- .../doc/Triangulation_3/CGAL/Triangulation_3.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Triangulation_3/doc/Triangulation_3/CGAL/Triangulation_3.h b/Triangulation_3/doc/Triangulation_3/CGAL/Triangulation_3.h index e0299c89333..94f5d467485 100644 --- a/Triangulation_3/doc/Triangulation_3/CGAL/Triangulation_3.h +++ b/Triangulation_3/doc/Triangulation_3/CGAL/Triangulation_3.h @@ -1304,17 +1304,22 @@ Finite_vertex_handles finite_vertex_handles() const; Points points() const; /*! -* returns an array containing the vertices of `e` +* returns an array containing the vertices of `e`, +* in the order of their indices `e.second` and `e.third` +* in the cell `e.first`. */ std::array vertices(const Edge& e) const; /*! -* returns an array containing the vertices of `f` +* returns an array containing the vertices of `f`, +* in counterclockwise order on the face of `f.first` +* opposite to vertex `f.first->vertex(f.second)`. */ std::array vertices(const Facet& f) const; /*! -* returns an array containing the vertices of `c` +* returns an array containing the vertices of `c`, +* in the same order as the indices of `c`. */ std::array vertices(const Cell_handle c) const;