From d88eca38574dedb51c8fc5b15968a6c0b359b34c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Jamin?= Date: Wed, 9 Sep 2015 11:15:12 +0200 Subject: [PATCH] Update Kernel--Side_of_oriented_sphere_d.h Fix the return value for the functor. Every model available returns Oriented_side, which is the only option because the functor does not know the orientation of the sphere and we don't want to compute it (to do that, one should use Side_of_bounded_sphere_d). --- .../doc/Kernel_d/Concepts/Kernel--Side_of_oriented_sphere_d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel_d/doc/Kernel_d/Concepts/Kernel--Side_of_oriented_sphere_d.h b/Kernel_d/doc/Kernel_d/Concepts/Kernel--Side_of_oriented_sphere_d.h index 9f6fdd64e04..db5945c63e0 100644 --- a/Kernel_d/doc/Kernel_d/Concepts/Kernel--Side_of_oriented_sphere_d.h +++ b/Kernel_d/doc/Kernel_d/Concepts/Kernel--Side_of_oriented_sphere_d.h @@ -22,7 +22,7 @@ side is the bounded interior of the sphere. \pre `A` contains \f$ d+1\f$ points in \f$ d\f$-space. \cgalRequires The value type of `ForwardIterator` is `Kernel_d::Point_d`. */ -template Bounded_side +template Oriented_side operator()( ForwardIterator first, ForwardIterator last, const Kernel_d::Point_d& p);