From 389cc089dbfdbbfd3c40a5fbc27b9e7eddf6c17e Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Thu, 19 Mar 2009 11:13:17 +0000 Subject: [PATCH] Added non-const pointer accessor. --- vcg/space/deprecated_point4.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vcg/space/deprecated_point4.h b/vcg/space/deprecated_point4.h index e95182ec..6c6e89aa 100644 --- a/vcg/space/deprecated_point4.h +++ b/vcg/space/deprecated_point4.h @@ -145,6 +145,10 @@ public: { return _v; } + inline T * V() + { + return _v; + } inline const T & V ( const int i ) const { assert(i>=0 && i<4);