From 3a76ce3a0130d6853dfb94c44fec063d3c1b14c1 Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Wed, 28 Sep 2005 19:32:09 +0000 Subject: [PATCH] Added const qualifier in GetBBox method. --- 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 539b9793..a7a545b8 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.28 2005/06/17 00:43:34 cignoni +Added a named typedef for the per wedge TexCoordinate + Revision 1.27 2005/03/18 16:35:53 fiorin minor changes to comply gcc compiler @@ -950,7 +953,7 @@ public: * Bounding box * **********************/ -void GetBBox( BoxType & bb ) +void GetBBox( BoxType & bb ) const { bb.Set( v[0]->P() ); bb.Add( v[1]->P() );