From 6b76ff4570c763f5c6f444113592e265334df0dd Mon Sep 17 00:00:00 2001 From: ganovelli Date: Thu, 15 Jul 2004 11:39:24 +0000 Subject: [PATCH] IsDeleted to IsD --- vcg/complex/trimesh/base.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vcg/complex/trimesh/base.h b/vcg/complex/trimesh/base.h index f60aac68..e2020dee 100644 --- a/vcg/complex/trimesh/base.h +++ b/vcg/complex/trimesh/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.7 2004/07/09 10:18:19 ganovelli +added access functions to vn and fn + Revision 1.6 2004/05/04 02:29:54 ganovelli removed Const from ConstFacePointer and ConstVertexPointer in the arguement function Mark, which are meant to be changed @@ -178,7 +181,7 @@ void InitFaceIMark() FaceIterator f; for(f=face.begin();f!=face.end();++f) - if( !(*f).IsDeleted() && (*f).IsR() && (*f).IsW() ) + if( !(*f).IsD() && (*f).IsR() && (*f).IsW() ) (*f).InitIMark(); } @@ -188,7 +191,7 @@ void InitVertexIMark() VertexIterator vi; for(vi=vert.begin();vi!=vert.end();++vi) - if( !(*vi).IsDeleted() && (*vi).IsRW() ) + if( !(*vi).IsD() && (*vi).IsRW() ) (*vi).InitIMark(); }