mirror of https://github.com/CGAL/cgal
Fix never trying again a user-rejected cap
This commit is contained in:
parent
eb5ff9b33e
commit
a4cb48a145
|
|
@ -1006,11 +1006,12 @@ bool remove_almost_degenerate_faces(const FaceRange& face_range,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!accept_change.flip(h))
|
if(!accept_change.flip(h))
|
||||||
{
|
{
|
||||||
#ifdef CGAL_PMP_DEBUG_REMOVE_DEGENERACIES_EXTRA
|
#ifdef CGAL_PMP_DEBUG_REMOVE_DEGENERACIES_EXTRA
|
||||||
std::cout << "\t Flipping prevented: rejected by user functor" << std::endl;
|
std::cout << "\t Flipping prevented: rejected by user functor" << std::endl;
|
||||||
#endif
|
#endif
|
||||||
|
next_edges_to_flip.insert(h);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue