mirror of https://github.com/CGAL/cgal
fixed bug for facet halfedge circulator
This commit is contained in:
parent
6edadbb743
commit
e257a410cf
|
|
@ -245,7 +245,7 @@ find_visible_set(const typename Traits::Point_3& point,
|
|||
visible.push_back(f);
|
||||
}
|
||||
}
|
||||
hdl_curr = hdl_curr->next();
|
||||
hdl_curr++;
|
||||
}
|
||||
while (hdl_curr != hdl_init);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ bool is_locally_convex(Facet_handle f_hdl, const Traits& traits)
|
|||
// Point must be on the plane or on the negative side
|
||||
if (has_on_positive_side((*f_hdl).plane(), point))
|
||||
return false;
|
||||
h_circ = h_circ->next();
|
||||
h_circ++;
|
||||
}
|
||||
while ( h_circ != (*f_hdl).facet_begin());
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue