From 51f6c2cb3e8d3f820fa3afc24d5916db1ecad0ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Thu, 15 Jul 2010 06:36:11 +0000 Subject: [PATCH] Fixed doc git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@331 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Core/Mesh/PolyConnectivity.hh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/OpenMesh/Core/Mesh/PolyConnectivity.hh b/src/OpenMesh/Core/Mesh/PolyConnectivity.hh index e18de93a..a9064475 100644 --- a/src/OpenMesh/Core/Mesh/PolyConnectivity.hh +++ b/src/OpenMesh/Core/Mesh/PolyConnectivity.hh @@ -196,7 +196,9 @@ public: * Create a new face consisting of three vertices provided by the handles. * (The vertices have to be already added to the mesh by add_vertex) * - * @param _vhandles sorted list of vertex handles (also defines order in which the vertices are added to the face) + * @param _vh0 First vertex handle + * @param _vh1 Second vertex handle + * @param _vh2 Third vertex handle */ FaceHandle add_face(VertexHandle _vh0, VertexHandle _vh1, VertexHandle _vh2) { @@ -209,7 +211,10 @@ public: * Create a new face consisting of four vertices provided by the handles. * (The vertices have to be already added to the mesh by add_vertex) * - * @param _vhandles sorted list of vertex handles (also defines order in which the vertices are added to the face) + * @param _vh0 First vertex handle + * @param _vh1 Second vertex handle + * @param _vh2 Third vertex handle + * @param _vh3 Fourth vertex handle */ FaceHandle add_face(VertexHandle _vh0, VertexHandle _vh1, VertexHandle _vh2, VertexHandle _vh3) {