From 7540cfabca76e5117088e561860f46fbab88812b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Fri, 30 Nov 2012 07:16:24 +0000 Subject: [PATCH] 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 --- src/OpenMesh/Core/Mesh/TriMeshT.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenMesh/Core/Mesh/TriMeshT.hh b/src/OpenMesh/Core/Mesh/TriMeshT.hh index 5ba211fe..6533a2cb 100644 --- a/src/OpenMesh/Core/Mesh/TriMeshT.hh +++ b/src/OpenMesh/Core/Mesh/TriMeshT.hh @@ -324,7 +324,7 @@ public: * @return Vertex handle of the new vertex */ 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). *