From 559161bedaeb522a4f5928c3ea6366fd1bca74df Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 20 Aug 2008 20:34:01 +0000 Subject: [PATCH] Changed the name of the pointer to edge Ep into the more standard VEp (like vertex plus and the other vertex to simplex adjacencies VFp and VTp) --- vcg/simplex/vertex/base.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vcg/simplex/vertex/base.h b/vcg/simplex/vertex/base.h index a637aba8..2702ba00 100644 --- a/vcg/simplex/vertex/base.h +++ b/vcg/simplex/vertex/base.h @@ -511,7 +511,7 @@ protected: #endif public: -inline EdgeType * & Ep() +inline EdgeType * & VEp() { #if ((defined __VCGLIB_VERTEX_EA) || (defined __VCGLIB_VERTEX_EAS)) return _ep; @@ -521,7 +521,7 @@ inline EdgeType * & Ep() #endif } -inline const EdgeType * & Ep() const +inline const EdgeType * & VEp() const { #if ((defined __VCGLIB_VERTEX_EA) || (defined __VCGLIB_VERTEX_EAS)) return _ep; @@ -531,7 +531,7 @@ inline const EdgeType * & Ep() const #endif } -inline int & Ei() +inline int & VEi() { #if ((defined __VCGLIB_VERTEX_EA) || (defined __VCGLIB_VERTEX_EAS)) @@ -542,7 +542,7 @@ inline int & Ei() #endif } -inline const int & Ei() const +inline const int & VEi() const { #if ((defined __VCGLIB_VERTEX_EA) || (defined __VCGLIB_VERTEX_EAS)) return _ei;