From f2143e6efbd477e6703e8dacb44878da2e193639 Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Thu, 28 Sep 2006 13:37:35 +0000 Subject: [PATCH] added non const * V() --- vcg/space/point3.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vcg/space/point3.h b/vcg/space/point3.h index fd1126a6..f0e93dbd 100644 --- a/vcg/space/point3.h +++ b/vcg/space/point3.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.23 2005/11/09 16:11:55 cignoni +Added Abs and LowClampToZero + Revision 1.22 2005/09/14 14:09:21 m_di_benedetto Added specialized Convert() for the same scalar type. @@ -197,6 +200,10 @@ public: { return _v; } + inline P3ScalarType * V() + { + return _v; + } inline P3ScalarType & V( const int i ) { assert(i>=0 && i<3);