From 8ad902095a9c8bc322acbd02c84e0d0b9443198a Mon Sep 17 00:00:00 2001 From: ganovelli Date: Thu, 7 Aug 2008 16:20:01 +0000 Subject: [PATCH] removed ImportVertex for ImportLocal --- vcg/complex/trimesh/crease_cut.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vcg/complex/trimesh/crease_cut.h b/vcg/complex/trimesh/crease_cut.h index 9eb4f45d..e81b238f 100644 --- a/vcg/complex/trimesh/crease_cut.h +++ b/vcg/complex/trimesh/crease_cut.h @@ -134,8 +134,7 @@ void CreaseCut(MESH_TYPE &m, float angleRad) if(curVertexInd < startVn) assert(curVertexInd == vertInd); if(curVertexInd >= startVn) { - //m.vert[curVertexInd].ImportLocal(*((*fi).V(j))); - tri::Append::ImportVertex(m.vert[curVertexInd],*((*fi).V(j))); + m.vert[curVertexInd].ImportLocal(*((*fi).V(j))); (*fi).V(j) = & m.vert[curVertexInd]; } }