Fixed doc

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@331 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2010-07-15 06:36:11 +00:00
parent 11798f6134
commit 51f6c2cb3e

View File

@@ -196,7 +196,9 @@ public:
* Create a new face consisting of three vertices provided by the handles. * 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) * (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) 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. * 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) * (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) FaceHandle add_face(VertexHandle _vh0, VertexHandle _vh1, VertexHandle _vh2, VertexHandle _vh3)
{ {