From ee0a90bd4d6198f891f094fc753423ede8346ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 21 Mar 2024 09:58:10 +0100 Subject: [PATCH] undo more changes --- .../include/CGAL/Homogeneous/function_objects.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Homogeneous_kernel/include/CGAL/Homogeneous/function_objects.h b/Homogeneous_kernel/include/CGAL/Homogeneous/function_objects.h index e28450256a0..3028950d7af 100644 --- a/Homogeneous_kernel/include/CGAL/Homogeneous/function_objects.h +++ b/Homogeneous_kernel/include/CGAL/Homogeneous/function_objects.h @@ -3373,8 +3373,6 @@ namespace HomogeneousKernelFunctors { typedef typename K::Point_2 Point_2; typedef typename K::Direction_2 Direction_2; typedef typename K::Line_2 Line_2; - typedef typename K::Segment_2 Segment_2; - typedef typename K::Triangle_2 Triangle_2; public: typedef Point_2 result_type; @@ -3387,14 +3385,6 @@ namespace HomogeneousKernelFunctors { l2.a()*l.c() - l.a()*l2.c(), l.a()*l2.b() - l2.a()*l.b() ); } - - Point_2 - operator()(const Segment_2& s, const Point_2& p) const - { return CommonKernelFunctors::Construct_projected_point_2()(s, p, K()); } - - Point_2 - operator()(const Triangle_2& t, const Point_2& p) const - { return CommonKernelFunctors::Construct_projected_point_2()(t, p, K()); } }; template