added few missing Has*Ocf

This commit is contained in:
ganovelli 2009-10-08 15:46:31 +00:00
parent 4ea077e7c2
commit 5c0f228a4d
1 changed files with 26 additions and 16 deletions

View File

@ -205,6 +205,8 @@ public:
static bool HasFaceNormal() { return false; }
static bool HasWedgeNormalOcc() { return false; }
static bool HasFaceNormalOcc() { return false; }
static bool HasWedgeNormalOcf() { return false; }
static bool HasFaceNormalOcf() { return false; }
// void ComputeNormal() {assert(0);}
// void ComputeNormalizedNormal() {assert(0);}
static void Name(std::vector<std::string> & name){ T::Name(name);}
@ -401,12 +403,20 @@ public:
const QualityType &cQ() const { static QualityType dummyQuality(0); assert(0); return dummyQuality; }
static bool HasFaceColor() { return false; }
static bool HasWedgeColor() { return false; }
static bool HasFaceQuality() { return false; }
static bool HasFaceQualityOcf() { return false;}
static bool HasFaceColorOcc() { return false;}
static bool HasFaceColorOcf() { return false;}
static bool HasWedgeColor() { return false; }
static bool HasWedgeColorOcc() { return false; }
static bool HasWedgeColorOcf() { return false; }
static bool HasFaceQuality() { return false; }
static bool HasFaceQualityOcc() { return false; }
static bool HasFaceQualityOcf() { return false;}
static bool HasMark() { return false; }
static bool HasMarkOcc() { return false; }
static bool HasMarkOcfb() { return false; }
static void Name(std::vector<std::string> & name){T::Name(name);}
template <class RightF>