From 60ca2d55efc89c8313ee1810a065418ca7fd4cb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 30 Dec 2011 13:38:51 +0000 Subject: [PATCH] add missing operator in Projection_traits --- Kernel_23/include/CGAL/internal/Projection_traits_3.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Kernel_23/include/CGAL/internal/Projection_traits_3.h b/Kernel_23/include/CGAL/internal/Projection_traits_3.h index f4892061c06..03c9bf18167 100644 --- a/Kernel_23/include/CGAL/internal/Projection_traits_3.h +++ b/Kernel_23/include/CGAL/internal/Projection_traits_3.h @@ -147,6 +147,13 @@ public: { return CGAL::side_of_bounded_circle(project(p),project(q),project(r),project(s) ); } + + CGAL::Bounded_side operator() (const Point &p, + const Point &q, + const Point &r) const + { + return CGAL::side_of_bounded_circle(project(p),project(q),project(r)); + } }; template