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)

This commit is contained in:
Paolo Cignoni 2008-08-20 20:34:01 +00:00
parent a00da7b3f3
commit 559161beda
1 changed files with 4 additions and 4 deletions

View File

@ -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;