From e469fef8bd0e38df13723fdd11baaf8fe7ce81fc Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Tue, 20 Sep 2005 13:58:55 +0000 Subject: [PATCH] Modified MArk function parameter form ConstVertexPointer to VertexPointer --- vcg/complex/vertexmesh/base.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/complex/vertexmesh/base.h b/vcg/complex/vertexmesh/base.h index 2a7eae8a..04e18472 100644 --- a/vcg/complex/vertexmesh/base.h +++ b/vcg/complex/vertexmesh/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.2 2005/08/02 11:37:29 pietroni +renamed typedef VertexContainer into VertContainer (like trimesh) + Revision 1.1 2005/03/09 13:22:55 ganovelli creation @@ -151,7 +154,7 @@ int imark; inline bool IsMarked( ConstVertexPointer v ) const { return v->IMark() == imark; } /** Set the vertex incremental mark of the vertex to the one of the mesh. */ -inline void Mark( ConstVertexPointer v ) const { v->IMark() = imark; } +inline void Mark( VertexPointer v ) const { v->IMark() = imark; } /// Unmark the mesh inline void UnMarkAll() { ++imark; }