From 9b763a1643abdd4dd5897f2a13657be7eb40b6c5 Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 31 Mar 2004 10:09:58 +0000 Subject: [PATCH] missing return value in zero() --- vcg/space/point4.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vcg/space/point4.h b/vcg/space/point4.h index a15eeb2d..fcc4a8f1 100644 --- a/vcg/space/point4.h +++ b/vcg/space/point4.h @@ -24,6 +24,10 @@ History $Log: not supported by cvs2svn $ +Revision 1.4 2004/03/11 17:17:49 tarini +added commets (doxy), uniformed with new style, now using math::, ... +added HomoNormalize(), Zero()... remade StableDot() (hand made sort). + Revision 1.1 2004/02/10 01:11:28 cignoni Edited Comments and GPL license @@ -69,7 +73,7 @@ public: { _v[0]= p._v[0]; _v[1]= p._v[1]; _v[2]= p._v[2]; _v[3]= p._v[3]; } - inline Zero() + inline Point4 &Zero() { _v[0] = _v[1] = _v[2] = _v[3]= 0; }