fixed bug for facet halfedge circulator

This commit is contained in:
Susan Hert 2001-06-21 09:41:46 +00:00
parent 6edadbb743
commit e257a410cf
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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;