mirror of https://github.com/CGAL/cgal
Merge branch 'Triangulation_3-fix_simplex_traverser-GF' into Triangulation_3-fix_simplex_traverser-GF-CGAL-5.6
This commit is contained in:
commit
53d82e5007
|
|
@ -731,7 +731,10 @@ public:
|
||||||
set_curr_simplex_to_entry();
|
set_curr_simplex_to_entry();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
if(lt_prev == Locate_type::CELL) {
|
if(lt_prev == Locate_type::CELL ||
|
||||||
|
lt_prev == Locate_type::OUTSIDE_CONVEX_HULL ||
|
||||||
|
lt_prev == Locate_type::OUTSIDE_AFFINE_HULL)
|
||||||
|
{
|
||||||
CGAL_assertion(ch_next == Cell_handle());
|
CGAL_assertion(ch_next == Cell_handle());
|
||||||
_curr_simplex = ch_prev;
|
_curr_simplex = ch_prev;
|
||||||
return *this;
|
return *this;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue