mirror of https://github.com/CGAL/cgal
Merge pull request #3481 from afabri/Nef_S2-has_shalfloop-GF
Nef_S2: has_sloop() -> has_shalfloop()
This commit is contained in:
commit
41bbdd06e0
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue