From 9df077d22fca7b372b3884d1754e93a95b2b97aa Mon Sep 17 00:00:00 2001 From: cignoni Date: Tue, 1 Nov 2005 18:16:36 +0000 Subject: [PATCH] Added intialization of _flags to zero in the default constructor of face --- vcg/simplex/face/base.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/simplex/face/base.h b/vcg/simplex/face/base.h index a5831d9a..50cfd973 100644 --- a/vcg/simplex/face/base.h +++ b/vcg/simplex/face/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.30 2005/10/13 09:25:43 cignoni +Added cFFp and cVFp const member functions + Revision 1.29 2005/09/28 19:32:09 m_di_benedetto Added const qualifier in GetBBox method. @@ -162,7 +165,7 @@ public: typedef Box3 BoxType; /// Default Empty Costructor - inline FACE_TYPE(){} + inline FACE_TYPE(){_flags=0;} /// This are the _flags of face, the default value is 0 int _flags;