small bug fix in convert_inner_shell_to_nef3

This commit is contained in:
Peter Hachenberger 2010-05-04 16:41:56 +00:00
parent 8051eccc1e
commit 79229a5472
1 changed files with 1 additions and 1 deletions

View File

@ -916,11 +916,11 @@ protected:
Halffacet_const_handle f = opposite_facet->twin(); Halffacet_const_handle f = opposite_facet->twin();
B.begin_facet();
fc = f->facet_cycles_begin(); fc = f->facet_cycles_begin();
se = SHalfedge_const_handle(fc); se = SHalfedge_const_handle(fc);
CGAL_assertion(se!=0); CGAL_assertion(se!=0);
if(omit_vertex[se->source()->source()]) return; if(omit_vertex[se->source()->source()]) return;
B.begin_facet();
SHalfedge_around_facet_const_circulator hc_start(se); SHalfedge_around_facet_const_circulator hc_start(se);
SHalfedge_around_facet_const_circulator hc_end(hc_start); SHalfedge_around_facet_const_circulator hc_end(hc_start);
CGAL_For_all(hc_start,hc_end) { CGAL_For_all(hc_start,hc_end) {