IsDeleted to IsD

This commit is contained in:
ganovelli 2004-07-15 11:39:24 +00:00
parent 858b87d98b
commit 6b76ff4570
1 changed files with 5 additions and 2 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $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 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 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; FaceIterator f;
for(f=face.begin();f!=face.end();++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(); (*f).InitIMark();
} }
@ -188,7 +191,7 @@ void InitVertexIMark()
VertexIterator vi; VertexIterator vi;
for(vi=vert.begin();vi!=vert.end();++vi) for(vi=vert.begin();vi!=vert.end();++vi)
if( !(*vi).IsDeleted() && (*vi).IsRW() ) if( !(*vi).IsD() && (*vi).IsRW() )
(*vi).InitIMark(); (*vi).InitIMark();
} }