Skip to content

Commit

Permalink
Merge pull request #3407 from MaelRL/PMP-Fix_do_intersect_look_up_error
Browse files Browse the repository at this point in the history
PMP: Fix look-up error
  • Loading branch information
lrineau committed Oct 29, 2018
2 parents 73dd93c + 5ab34f4 commit c759275
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,7 @@ bool do_intersect(const TriangleMesh& tm1,
{
CGAL_precondition(CGAL::is_triangle_mesh(tm1));
CGAL_precondition(CGAL::is_triangle_mesh(tm2));
return do_intersect(tm1, tm2, parameters::all_default(), parameters::all_default());
return CGAL::Polygon_mesh_processing::do_intersect(tm1, tm2, parameters::all_default(), parameters::all_default());
}

/**
Expand Down Expand Up @@ -1382,7 +1382,7 @@ bool do_intersect(const TriangleMesh& tm,
{
CGAL_precondition(CGAL::is_triangle_mesh(tm));

return do_intersect(tm, polylines, parameters::all_default());
return CGAL::Polygon_mesh_processing::do_intersect(tm, polylines, parameters::all_default());
}


Expand All @@ -1405,7 +1405,7 @@ bool do_intersect(const TriangleMesh& tm,
{
CGAL_precondition(CGAL::is_triangle_mesh(tm));

return do_intersect(tm, polyline, parameters::all_default());
return CGAL::Polygon_mesh_processing::do_intersect(tm, polyline, parameters::all_default());
}

namespace internal{
Expand Down

0 comments on commit c759275

Please sign in to comment.