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()); } + + };