add documented has_on for point and circle on a sphere

This commit is contained in:
Sébastien Loriot 2009-06-24 16:26:17 +00:00
parent 54391f4da1
commit 7537bdbeab
1 changed files with 14 additions and 0 deletions

View File

@ -129,6 +129,20 @@ public:
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
has_on_boundary(const Point_3 &p) const
{