commented out a wrong assert in FFlip function

This commit is contained in:
Nico Pietroni 2014-02-07 11:07:36 +00:00
parent 3bd4213984
commit c5d79ea704
1 changed files with 3 additions and 2 deletions

View File

@ -224,8 +224,9 @@ public:
/// return the face that it should have if we make FlipF;
FaceType *FFlip() const
{
assert( f->FFp(z)->FFp(f->FFi(z))==f );
assert(f->V(f->Prev(z))!=v && (f->V(f->Next(z))==v || f->V((z+0)%f->VN())==v));
// assert( f->FFp(z)->FFp(f->FFi(z))==f );
// assert(f->V(f->Prev(z))!=v);
// assert(f->V(f->Next(z))==v || f->V((z+0)%f->VN())==v);
FaceType *nf=f->FFp(z);
return nf;
}