mirror of https://github.com/CGAL/cgal
add documented has_on for point and circle on a sphere
This commit is contained in:
parent
54391f4da1
commit
7537bdbeab
|
|
@ -129,6 +129,20 @@ public:
|
||||||
return R().oriented_side_3_object()(*this, p);
|
return R().oriented_side_3_object()(*this, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
typename R::Boolean
|
||||||
|
has_on(const Point_3 &p) const
|
||||||
|
{
|
||||||
|
return R().has_on_3_object()(*this, p);
|
||||||
|
//return bounded_side(p) == ON_BOUNDARY;
|
||||||
|
}
|
||||||
|
|
||||||
|
typename R::Boolean
|
||||||
|
has_on(const Circle_3 &c) const
|
||||||
|
{
|
||||||
|
return R().has_on_3_object()(*this, c);
|
||||||
|
//return bounded_side(p) == ON_BOUNDARY;
|
||||||
|
}
|
||||||
|
|
||||||
typename R::Boolean
|
typename R::Boolean
|
||||||
has_on_boundary(const Point_3 &p) const
|
has_on_boundary(const Point_3 &p) const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue