From 9614b44161bbc85a055054c1d4fe6be58791f4f7 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Tue, 4 May 2004 02:29:54 +0000 Subject: [PATCH] removed Const from ConstFacePointer and ConstVertexPointer in the arguement function Mark, which are meant to be changed --- 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 79be7d02..cabc5fde 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.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; }