mirror of https://github.com/CGAL/cgal
add missing operator in Projection_traits
This commit is contained in:
parent
5eace40fa1
commit
60ca2d55ef
|
|
@ -147,6 +147,13 @@ public:
|
||||||
{
|
{
|
||||||
return CGAL::side_of_bounded_circle(project(p),project(q),project(r),project(s) );
|
return CGAL::side_of_bounded_circle(project(p),project(q),project(r),project(s) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CGAL::Bounded_side operator() (const Point &p,
|
||||||
|
const Point &q,
|
||||||
|
const Point &r) const
|
||||||
|
{
|
||||||
|
return CGAL::side_of_bounded_circle(project(p),project(q),project(r));
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <class R,int dim>
|
template <class R,int dim>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue