Corrected the FHp member of the polygon.

This commit is contained in:
Paolo Cignoni 2014-02-13 13:16:09 +00:00
parent d86bbfae4e
commit 15bec03c89
1 changed files with 116 additions and 116 deletions

View File

@ -52,8 +52,8 @@ public:
inline void Dealloc(){}
// EmptyPFHAdj
typename T::HEdgePointer &FHp(const int & ) { static typename T::HEdgePointer fp=0; assert(0); return fp; }
typename T::HEdgePointer const cFHp(const int & ) const { static typename T::HEdgePointer const fp=0; return fp; }
typename T::HEdgePointer &FHp() { static typename T::HEdgePointer fp=0; assert(0); return fp; }
typename T::HEdgePointer const cFHp() const { return 0; }
static bool HasFHAdjacency() { return false; }
private:
int _ns;