From 5a7921fe9cf1350ddd0af0bdf2804e65ac009153 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Wed, 12 Jan 2005 11:23:46 +0000 Subject: [PATCH] correction on point<3 --- vcg/space/box.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vcg/space/box.h b/vcg/space/box.h index 9afa8955..9ee8b1b6 100644 --- a/vcg/space/box.h +++ b/vcg/space/box.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.1 2004/03/16 03:07:38 tarini +"dimensionally unified" version: first commit + Revision 1.5 2004/03/05 17:51:28 tarini Errorino "ScalarType" -> "S" @@ -73,9 +76,9 @@ public: /// The scalar type protected: /// _min coordinate point - Point<3,S> _min; + Point3 _min; /// _max coordinate point - Point<3,S> _max; + Point3 _max; public: