From 739e46587e8cd3a9a9bed7fac91b489e42e029bc Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 28 Sep 2006 17:34:11 +0000 Subject: [PATCH] Added Missing GetBBox function --- vcg/simplex/vertexplus/base.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vcg/simplex/vertexplus/base.h b/vcg/simplex/vertexplus/base.h index 43bea1a9..2ac3fc41 100644 --- a/vcg/simplex/vertexplus/base.h +++ b/vcg/simplex/vertexplus/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.7 2006/02/27 17:42:43 ponchio +Added some documentation. + Revision 1.6 2005/12/05 15:58:10 cignoni Removed spurious definition of flags in Aritymax that was overriding the correct definition in EmplyBitFlags and BitFlags classes @@ -231,6 +234,11 @@ static inline bool DeleteBitFlag(int bitval) /// This function clear the given user bit void ClearUserBit(int userBit){this->Flags() &= (~userBit);} + template + void GetBBox( BoxType & bb ) const + { bb.Set(this->P()); } + + };