fix setting of mark

This commit is contained in:
Sébastien Loriot 2018-12-03 09:57:43 +01:00
parent b29dcaaf63
commit 881fdab58d
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ public:
CGAL_forall_svertices(v,D) v->mark() = true;
CGAL_forall_sedges(e,D) e->mark() = true;
CGAL_forall_sfaces(f,D) f->mark() = false;
if ( D.has_sloop() ) D.shalfloop()->mark() = D.shalfoop()->twin() = true;
if ( D.has_sloop() ) D.shalfloop()->mark() = D.shalfoop()->twin()->mark() = true;
D.simplify();
}