Merge pull request #3481 from afabri/Nef_S2-has_shalfloop-GF

Nef_S2: has_sloop() -> has_shalfloop()
This commit is contained in:
Laurent Rineau 2018-12-01 16:31:13 +01:00
commit 41bbdd06e0
1 changed files with 2 additions and 2 deletions

View File

@ -375,7 +375,7 @@ public:
SHalfedge_iterator e;
CGAL_forall_svertices(v,D) v->mark() = false;
CGAL_forall_sedges(e,D) e->mark() = false;
if ( D.has_sloop() ) D.shalfloop()->mark() = false;
if ( D.has_shalfloop() ) D.shalfloop()->mark() = false;
D.simplify();
}
@ -390,7 +390,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_shalfloop() ) D.shalfloop()->mark() = D.shalfoop()->twin() = true;
D.simplify();
}