From 5630a1e252a2c11ec7745b3833978c5f9e7e39a2 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Thu, 6 Jul 2006 12:40:34 +0000 Subject: [PATCH] typdef ..ScalarType added --- vcg/space/sphere3.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vcg/space/sphere3.h b/vcg/space/sphere3.h index a46f66c2..90cd8c80 100644 --- a/vcg/space/sphere3.h +++ b/vcg/space/sphere3.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.8 2005/02/22 14:18:15 ponchio +assert addded. + Revision 1.7 2005/02/21 17:03:03 ponchio Added Tight creation. @@ -70,6 +73,7 @@ protected: Point3 _center; T _radius; public: + typedef T ScalarType; Sphere3(): _radius(-1) {} Sphere3(const Point3 ¢er, T radius): _center(center), _radius(radius) {}