From c5d79ea704351354a63fd6f783690ffc09b91650 Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Fri, 7 Feb 2014 11:07:36 +0000 Subject: [PATCH] commented out a wrong assert in FFlip function --- vcg/simplex/face/pos.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vcg/simplex/face/pos.h b/vcg/simplex/face/pos.h index a4047184..9b844f1b 100644 --- a/vcg/simplex/face/pos.h +++ b/vcg/simplex/face/pos.h @@ -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; }