From 4adf7e786ba22d2d962ea58c52d0628c22678402 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 16 Jan 2024 15:07:38 +0100 Subject: [PATCH] fix Compare_angle_3 with six points --- Kernel_23/include/CGAL/Kernel/function_objects.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel_23/include/CGAL/Kernel/function_objects.h b/Kernel_23/include/CGAL/Kernel/function_objects.h index d85e18e7a1a..d0f5f8e1c80 100644 --- a/Kernel_23/include/CGAL/Kernel/function_objects.h +++ b/Kernel_23/include/CGAL/Kernel/function_objects.h @@ -232,7 +232,7 @@ namespace CommonKernelFunctors { return CGAL::compare(CGAL::square(sc_prod_1)* ba2.squared_length()*bc2.squared_length(), CGAL::square(sc_prod_2)* - ba1.squared_length()*bc2.squared_length()); + ba1.squared_length()*bc1.squared_length()); } else { return LARGER; }