From 19fd5897954dbd128c459614511e795f3fe806cf Mon Sep 17 00:00:00 2001 From: cignoni Date: Sat, 12 Nov 2005 18:42:18 +0000 Subject: [PATCH] Added ClearS and GetBBox --- vcg/simplex/faceplus/base.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/vcg/simplex/faceplus/base.h b/vcg/simplex/faceplus/base.h index af2fef5b..34471a06 100644 --- a/vcg/simplex/faceplus/base.h +++ b/vcg/simplex/faceplus/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.2 2005/10/14 13:26:57 cignoni +First Really Working version + Revision 1.2 2004/04/03 13:33:55 cignoni Missing include @@ -219,6 +222,8 @@ public: void SetB(int i) {Flags() |=(BORDER0< + void GetBBox( BoxType & bb ) const + { + bb.Set(P(0)); + bb.Add(P(1)); + bb.Add(P(2)); + } + }; template < typename T=int>