From 017714531b8fe34e5486b1ef86a6b4f4ce0b871b Mon Sep 17 00:00:00 2001 From: ganovelli Date: Wed, 12 Jan 2005 11:06:54 +0000 Subject: [PATCH] added InitVertexIMark --- vcg/complex/tetramesh/base.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/vcg/complex/tetramesh/base.h b/vcg/complex/tetramesh/base.h index e0a040bf..9b38da76 100644 --- a/vcg/complex/tetramesh/base.h +++ b/vcg/complex/tetramesh/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.10 2004/10/11 17:44:07 ganovelli +added include of color4 + Revision 1.9 2004/07/15 00:16:37 cignoni Better doxigen documentation @@ -185,6 +188,16 @@ class Tetramesh{ tn = 0; vn = 0; } + + /// Initialize the imark-system of the vertices + void InitVertexIMark() + { + VertexIterator vi; + + for(vi=vert.begin();vi!=vert.end();++vi) + if( !(*vi).IsD() && (*vi).IsRW() ) + (*vi).InitIMark(); +} //@} /***********************************************/