From 436b65c8072604241fec2c634551a0c35ca740c5 Mon Sep 17 00:00:00 2001 From: Pedro Machado Manhaes de Castro Date: Wed, 9 Aug 2006 12:22:38 +0000 Subject: [PATCH] Fixing some problems --- .../internal_function_has_on_spherical_kernel.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Curved_kernel_3/include/CGAL/Curved_kernel_3/internal_function_has_on_spherical_kernel.h b/Curved_kernel_3/include/CGAL/Curved_kernel_3/internal_function_has_on_spherical_kernel.h index 9afb9407821..3663a2c5de2 100644 --- a/Curved_kernel_3/include/CGAL/Curved_kernel_3/internal_function_has_on_spherical_kernel.h +++ b/Curved_kernel_3/include/CGAL/Curved_kernel_3/internal_function_has_on_spherical_kernel.h @@ -24,7 +24,7 @@ namespace CGAL { has_on(const typename SK::Sphere_3 &a, const typename SK::Point_3 &p) { - return a.has_on_boundary(p); + return a.rep().has_on_boundary(p); } template @@ -45,7 +45,7 @@ namespace CGAL { has_on(const typename SK::Plane_3 &a, const typename SK::Point_3 &p) { - return a.has_on(p); + return a.rep().has_on(p); } template @@ -66,7 +66,7 @@ namespace CGAL { has_on(const typename SK::Line_3 &a, const typename SK::Point_3 &p) { - return a.has_on(p); + return a.rep().has_on(p); } template @@ -123,7 +123,7 @@ namespace CGAL { has_on(const typename SK::Plane_3 &a, const typename SK::Line_3 &p) { - return a.has_on(p); + return a.rep().has_on(p); } template