added missing function for polygon face components

This commit is contained in:
Luigi Malomo 2021-04-22 20:49:12 +02:00
parent 0882d62582
commit 15b1b778d4
1 changed files with 3 additions and 2 deletions

View File

@ -143,8 +143,9 @@ public:
typename T::FacePointer &VFp(const int j) { assert(j>=0 && j<this->VN()); return _vfpP[j]; }
typename T::FacePointer const VFp(const int j) const { assert(j>=0 && j<this->VN()); return _vfpP[j]; }
typename T::FacePointer const cVFp(const int j) const { assert(j>=0 && j<this->VN()); return _vfpP[j]; }
char &VFi(const int j) {return _vfiP[j]; }
char VFi(const int j) const {return _vfiP[j]; }
char & VFi(const int j) { return _vfiP[j]; }
char VFi(const int j) const { return _vfiP[j]; }
char cVFi(const int j) const { return _vfiP[j]; }
template <class LeftF>
void ImportData(const LeftF & leftF){T::ImportData(leftF);}
inline void Alloc(const int & ns) {