From e5ed268b6a548d530748629851045ff8e390091f Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Tue, 19 Feb 2013 13:56:37 +0000 Subject: [PATCH] added function cVFi --- vcg/simplex/face/component.h | 1 + 1 file changed, 1 insertion(+) diff --git a/vcg/simplex/face/component.h b/vcg/simplex/face/component.h index c3461e70..9c7d0c6c 100644 --- a/vcg/simplex/face/component.h +++ b/vcg/simplex/face/component.h @@ -534,6 +534,7 @@ public: typename T::FacePointer &VFp(const int j) { assert(j>=0 && j<3); return _vfp[j]; } typename T::FacePointer cVFp(const int j) const { assert(j>=0 && j<3); return _vfp[j]; } char &VFi(const int j) {return _vfi[j]; } + char cVFi(const int j)const {return _vfi[j]; } template void ImportData(const RightValueType & rightF){T::ImportData(rightF);} inline void Alloc(const int & ns){T::Alloc(ns);}