From 60036b0e6e0270d55b1dd358278b3cf444f83a8d Mon Sep 17 00:00:00 2001 From: ponchio Date: Tue, 14 Jun 2005 13:46:20 +0000 Subject: [PATCH] Minibug: Box2f -> Box2 in the template. --- vcg/space/box2.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/space/box2.h b/vcg/space/box2.h index f7782ea6..1b134306 100644 --- a/vcg/space/box2.h +++ b/vcg/space/box2.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.5 2005/05/06 14:02:37 croccia +replaced all the occurences of min.v[0] with min.X(), max.v[0] with max.X() etc. + Revision 1.3 2005/05/05 10:20:24 croccia changed #include to #include croccia @@ -178,7 +181,7 @@ public: */ bool Collide( Box2 const &b ) { - Box2f bb=*this; + Box2 bb=*this; bb.Intersect(b); return bb.IsValid(); }