From a952f745a0fb21884d963a088dc323f32398fded Mon Sep 17 00:00:00 2001 From: ponchio Date: Thu, 19 Feb 2004 15:27:40 +0000 Subject: [PATCH] Sqrt -> Math<...>::Sqrt --- vcg/space/point3.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vcg/space/point3.h b/vcg/space/point3.h index b0640a96..3da16fcd 100644 --- a/vcg/space/point3.h +++ b/vcg/space/point3.h @@ -23,7 +23,10 @@ /**************************************************************************** History -$Log: not supported by cvs2svn $ +$Log: not supported by cvs2svn $ +Revision 1.8 2004/02/19 15:13:40 cignoni +corrected sqrt and added doxygen groups + Revision 1.7 2004/02/17 02:08:47 cignoni Di prova... @@ -236,7 +239,7 @@ public: // Norme inline P3ScalarType Norm() const { - return Sqrt( _v[0]*_v[0] + _v[1]*_v[1] + _v[2]*_v[2] ); + return Math::Sqrt( _v[0]*_v[0] + _v[1]*_v[1] + _v[2]*_v[2] ); } inline P3ScalarType SquaredNorm() const { @@ -261,7 +264,7 @@ public: // Normalizzazione inline Point3 & Normalize() { - P3ScalarType n = Sqrt(_v[0]*_v[0] + _v[1]*_v[1] + _v[2]*_v[2]); + P3ScalarType n = Math::Sqrt(_v[0]*_v[0] + _v[1]*_v[1] + _v[2]*_v[2]); if(n>0.0) { _v[0] /= n; _v[1] /= n; _v[2] /= n; } return *this; }