From 369e160dcf5f0df707c02bfe7dabfd6d8e1c1cb1 Mon Sep 17 00:00:00 2001 From: cignoni Date: Mon, 10 May 2004 13:50:32 +0000 Subject: [PATCH] Updated names of adj functions to the new standards --- vcg/simplex/vertexplus/component.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/vcg/simplex/vertexplus/component.h b/vcg/simplex/vertexplus/component.h index 1e2d3ee5..63b1dc8e 100644 --- a/vcg/simplex/vertexplus/component.h +++ b/vcg/simplex/vertexplus/component.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.6 2004/04/05 11:53:06 cignoni +addend constant access funcs + Revision 1.5 2004/04/03 13:35:51 cignoni minor changes @@ -184,15 +187,15 @@ template class Qualityd: public Quality {}; template class EmptyVFAdj: public T { public: - typename T::FacePointer &Fp() { static typename T::FacePointer fp=0; return fp; } - int &Zp(){static int z=0; return z;}; + typename T::FacePointer &VFb() { static typename T::FacePointer fp=0; return fp; } + int &VFi(){static int z=0; return z;}; static bool HasVFAdjacency() { return false; } }; template class VFAdj: public T { public: - typename T::FacePointer &Fp() {return _fp; } - int &Zp() {return _zp; } + typename T::FacePointer &VFb() {return _fp; } + int &VFi() {return _zp; } static bool HasVFAdjacency() { return true; } private: typename T::FacePointer _fp ;