- Side_of_bounded_circle_2 and Side_of_bounded_sphere_3.

This commit is contained in:
Sylvain Pion 2001-03-16 14:53:47 +00:00
parent 6ca61f952e
commit 0bc3904a63
3 changed files with 33 additions and 0 deletions

View File

@ -1,3 +1,6 @@
3.29 (16 Mar 2001)
- Side_of_bounded_circle_2 and Side_of_bounded_sphere_3.
3.28 (6 Mar 2001)
- Added Compute_squared_distance_2 and 3.
- Remove references to point_vector_declarationsH2.h.

View File

@ -402,6 +402,11 @@ class Side_of_bounded_circle
public:
typedef Bounded_side result_type;
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& t) const
{ return side_of_bounded_circle(p,q,t); }
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& r, const T& t) const
@ -424,6 +429,16 @@ class Side_of_bounded_sphere
public:
typedef Bounded_side result_type;
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& t) const
{ return side_of_bounded_sphere(p,q,t); }
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& r, const T& t) const
{ return side_of_bounded_sphere(p,q,r,t); }
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& r, const T& s, const T& t) const

View File

@ -402,6 +402,11 @@ class Side_of_bounded_circle
public:
typedef Bounded_side result_type;
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& t) const
{ return side_of_bounded_circle(p,q,t); }
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& r, const T& t) const
@ -424,6 +429,16 @@ class Side_of_bounded_sphere
public:
typedef Bounded_side result_type;
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& t) const
{ return side_of_bounded_sphere(p,q,t); }
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& r, const T& t) const
{ return side_of_bounded_sphere(p,q,r,t); }
template <class T>
Bounded_side
operator()(const T& p, const T& q, const T& r, const T& s, const T& t) const