mirror of https://github.com/CGAL/cgal
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:
parent
022d7325a3
commit
d88eca3857
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue