Added Missing GetBBox function

This commit is contained in:
Paolo Cignoni 2006-09-28 17:34:11 +00:00
parent f2143e6efb
commit 739e46587e
1 changed files with 8 additions and 0 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $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 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 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 /// This function clear the given user bit
void ClearUserBit(int userBit){this->Flags() &= (~userBit);} void ClearUserBit(int userBit){this->Flags() &= (~userBit);}
template<class BoxType>
void GetBBox( BoxType & bb ) const
{ bb.Set(this->P()); }
}; };