Fixed missing overload

This commit is contained in:
Mael Rouxel-Labbé 2017-12-16 13:07:31 +01:00
parent 27fce35ca1
commit ec8d413f17
1 changed files with 9 additions and 4 deletions

View File

@ -615,13 +615,18 @@ public:
return construct_point(pp.first, pp.second);
}
Periodic_point_3 construct_periodic_point(const Point_3& p,
const bool had_to_use_exact) const
{
// The function is a different file to be able to be used where there is
// no triangulation (namely, the domains of Periodic_3_mesh_3).
return ::CGAL::P3T3::internal::construct_periodic_point(p, had_to_use_exact, geom_traits());
}
Periodic_point_3 construct_periodic_point(const Point_3& p) const
{
bool useless = false;
// The function is a different file to be able to be used where there is
// no triangulation (namely, the domains of Periodic_3_mesh_3).
return ::CGAL::P3T3::internal::construct_periodic_point(p, useless, geom_traits());
return construct_periodic_point(p, useless);
}
// ---------------------------------------------------------------------------