mirror of https://github.com/CGAL/cgal
Fixed missing overload
This commit is contained in:
parent
27fce35ca1
commit
ec8d413f17
|
|
@ -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);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Reference in New Issue