From e6db8b5c7d40f10d17cf39be544b190a232138b5 Mon Sep 17 00:00:00 2001 From: cignoni Date: Sat, 12 Nov 2005 18:43:14 +0000 Subject: [PATCH] added missing cFFi --- vcg/simplex/faceplus/component.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vcg/simplex/faceplus/component.h b/vcg/simplex/faceplus/component.h index e95bab7a..6d81de38 100644 --- a/vcg/simplex/faceplus/component.h +++ b/vcg/simplex/faceplus/component.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.1 2005/10/14 15:07:58 cignoni +First Really Working version + ****************************************************************************/ #ifndef __VCG_FACE_PLUS_COMPONENT @@ -301,7 +304,8 @@ public: typename T::FacePointer &FFp(const int j) { assert(j>=0 && j<3); return _ffp[j]; } typename T::FacePointer const FFp(const int j) const { assert(j>=0 && j<3); return _ffp[j]; } typename T::FacePointer const cFFp(const int j) const { assert(j>=0 && j<3); return _ffp[j]; } - char &FFi(const int j) {return _ffi[j]; } + char &FFi(const int j) { return _ffi[j]; } + const char &cFFi(const int j) const { return _ffi[j]; } static bool HasFFAdjacency() { return true; } static bool HasFFAdjacencyOpt() { return false; }