removed Const from ConstFacePointer and ConstVertexPointer in the arguement function Mark, which are meant to be changed

This commit is contained in:
ganovelli 2004-05-04 02:29:54 +00:00
parent cee79014d1
commit 9614b44161
1 changed files with 5 additions and 2 deletions

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.5 2004/03/18 16:00:10 cignoni
minor changes
Revision 1.4 2004/03/10 00:57:44 cignoni
minor changes
@ -198,11 +201,11 @@ inline bool IsMarked( ConstFacePointer f ) const { return f->IMark() == imark; }
/** Set the vertex incremental mark of the vertex to the one of the mesh.
@param v Vertex pointer
*/
inline void Mark( ConstVertexPointer v ) const { v->IMark() = imark; }
inline void Mark( VertexPointer v ) const { v->IMark() = imark; }
/** Set the face incremental mark of the vertex to the one of the mesh.
@param v Vertex pointer
*/
inline void Mark( ConstFacePointer f ) const { f->IMark() = imark; }
inline void Mark( FacePointer f ) const { f->IMark() = imark; }
/// Unmark the mesh
inline void UnMarkAll() { ++imark; }