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).
This commit is contained in:
Clément Jamin 2015-09-09 11:15:12 +02:00
parent 022d7325a3
commit d88eca3857
1 changed files with 1 additions and 1 deletions

View File

@ -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 <class ForwardIterator> Bounded_side
template <class ForwardIterator> Oriented_side
operator()( ForwardIterator first, ForwardIterator last, const
Kernel_d::Point_d& p);