Skip to content

Commit

Permalink
Specified namespace to avoid look-up errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MaelRL committed Oct 16, 2018
1 parent 146fc90 commit 5ab34f4
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 5ab34f4

Please sign in to comment.