another forgotten revert

This commit is contained in:
Sébastien Loriot 2024-03-21 10:32:06 +01:00
parent cb21cbdf2d
commit 57062536c3
1 changed files with 0 additions and 10 deletions

View File

@ -3278,8 +3278,6 @@ namespace CartesianKernelFunctors {
{ {
typedef typename K::Point_2 Point_2; typedef typename K::Point_2 Point_2;
typedef typename K::Line_2 Line_2; typedef typename K::Line_2 Line_2;
typedef typename K::Segment_2 Segment_2;
typedef typename K::Triangle_2 Triangle_2;
public: public:
typedef Point_2 result_type; typedef Point_2 result_type;
@ -3291,14 +3289,6 @@ namespace CartesianKernelFunctors {
line_project_pointC2(l.a(), l.b(), l.c(), p.x(), p.y(), x, y); line_project_pointC2(l.a(), l.b(), l.c(), p.x(), p.y(), x, y);
return construct_point_2(x, y); return construct_point_2(x, y);
} }
Point_2
operator()( const Segment_2& s, const Point_2& p ) const
{ return CommonKernelFunctors::Construct_projected_point_2<K>()(s, p, K()); }
Point_2
operator()( const Triangle_2& t, const Point_2& p ) const
{ return CommonKernelFunctors::Construct_projected_point_2<K>()(t, p, K()); }
}; };