Add trivial Point_2 / Point_2 projection overload

This commit is contained in:
Mael Rouxel-Labbé
2025-04-20 15:03:49 +02:00
parent 8f95d2850f
commit bc304f4951
2 changed files with 12 additions and 0 deletions
@@ -3177,6 +3177,10 @@ public:
Point_2
operator()(const Triangle_2& t, const Point_2& p) const
{ return CommonKernelFunctors::Construct_projected_point_2<K>()(t, p, K()); }
const Point_2&
operator()(const Point_2& p, const Point_2& q) const
{ return CommonKernelFunctors::Construct_projected_point_2<K>()(p, q, K()); }
};