Some forgotten operators on functors for Circle_3

This commit is contained in:
Pedro Machado Manhaes de Castro
2008-10-02 16:31:35 +00:00
parent 759a865e5a
commit 8960a3dd58
2 changed files with 11 additions and 0 deletions
@@ -1006,6 +1006,7 @@ namespace CartesianKernelFunctors {
typedef typename K::FT FT;
typedef typename K::Point_3 Point_3;
typedef typename K::Sphere_3 Sphere_3;
typedef typename K::Circle_3 Circle_3;
public:
typedef FT result_type;
@@ -1013,6 +1014,10 @@ namespace CartesianKernelFunctors {
operator()( const Sphere_3& s) const
{ return s.rep().squared_radius(); }
result_type
operator()( const Circle_3& c) const
{ return c.rep().squared_radius(); }
result_type
operator()( const Point_3& p, const Point_3& q) const
{