Merge pull request #565 from afabri/Triangulation-Issue557-GF

Apply the fix proposed in Issue #557
This commit is contained in:
Sebastien Loriot 2015-12-18 16:32:36 +01:00
commit 2eba140684
1 changed files with 2 additions and 1 deletions

View File

@ -877,8 +877,9 @@ Triangulation<TT, TDS>
std::back_insert_iterator<std::vector<Full_cell_handle> > out(simps);
if( current_dimension() < maximal_dimension() )
{
Coaffine_orientation_d ori = coaffine_orientation_predicate();
Outside_convex_hull_traversal_predicate<Coaffine_orientation_d>
ochtp(*this, p, coaffine_orientation_predicate());
ochtp(*this, p, ori);
tds().gather_full_cells(s, ochtp, out);
}
else