From 7810ccc68e08d4d7307b59856e97a949c91f86c7 Mon Sep 17 00:00:00 2001 From: cnr-isti-vclab Date: Wed, 23 Aug 2006 15:34:20 +0000 Subject: [PATCH] added minimal comments --- vcg/simplex/vertex/base.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/vcg/simplex/vertex/base.h b/vcg/simplex/vertex/base.h index b77b573b..27438278 100644 --- a/vcg/simplex/vertex/base.h +++ b/vcg/simplex/vertex/base.h @@ -183,7 +183,8 @@ namespace vcg { * directory. Each file specify a class type with the desired fields. So for example * including 'vcg/simplex/vertex/with/VCVN.h' allow you to use the class VertVCVN that has per-vertex color and normal stored inside. */ -template , class CoordTYPE= Point3 > class VERTEX_TYPE +template , class CoordTYPE= Point3 > +class VERTEX_TYPE { public: @@ -617,7 +618,7 @@ protected: #endif public: -inline VTTYPE * & VTp() +inline VTTYPE * & VTb() { #if ((defined __VCGLIB_VERTEX_AT) || (defined __VCGLIB_VERTEX_ATS)) return _vtb; @@ -627,7 +628,7 @@ inline VTTYPE * & VTp() #endif } -inline const VTTYPE * & VTp() const +inline const VTTYPE * & VTb() const { #if ((defined __VCGLIB_VERTEX_AT) || (defined __VCGLIB_VERTEX_ATS)) return _vtb;