Fixed copy and paste typo in split_copy for face handle

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@773 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2012-11-30 07:16:24 +00:00
parent 618f7df524
commit 7540cfabca

View File

@@ -324,7 +324,7 @@ public:
* @return Vertex handle of the new vertex * @return Vertex handle of the new vertex
*/ */
inline VertexHandle split_copy(FaceHandle _fh, const Point& _p) inline VertexHandle split_copy(FaceHandle _fh, const Point& _p)
{ const VertexHandle vh = this->add_vertex(_p); PolyMesh::split_copy(_fh, _p); return vh; } { const VertexHandle vh = this->add_vertex(_p); PolyMesh::split_copy(_fh, vh); return vh; }
/** \brief Face split (= 1-to-3 split, calls corresponding PolyMeshT function). /** \brief Face split (= 1-to-3 split, calls corresponding PolyMeshT function).
* *