From b68d85894d3fc92eb060dc92e7e0acf1f09c9993 Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 10 Mar 2004 00:35:24 +0000 Subject: [PATCH] added a math namespace reference --- vcg/space/point4.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/space/point4.h b/vcg/space/point4.h index c8981d1e..0154c3c7 100644 --- a/vcg/space/point4.h +++ b/vcg/space/point4.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.1 2004/02/10 01:11:28 cignoni +Edited Comments and GPL license + ****************************************************************************/ #ifndef __VCGLIB_POINT4 @@ -209,7 +212,7 @@ public: k[1] = _v[1]*p._v[1]; k[2] = _v[2]*p._v[2]; k[3] = _v[3]*p._v[3]; - sort(k+0,k+4, MagnitudoComparer() ); + sort(k+0,k+4, math::MagnitudoComparer() ); T q = k[0]; q += k[1]; q += k[2];