// Copyright (c) 2003-2008 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // You can redistribute it and/or modify it under the terms of the GNU // General Public License as published by the Free Software Foundation, // either version 3 of the License, or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // SPDX-License-Identifier: GPL-3.0+ // // Author(s) : Monique Teillaud, Sylvain Pion, Pedro Machado // Partially supported by the IST Programme of the EU as a Shared-cost // RTD (FET Open) Project under Contract No IST-2000-26473 // (ECG - Effective Computational Geometry for Curves and Surfaces) // and a STREP (FET Open) Project under Contract No IST-006413 // (ACS -- Algorithms for Complex Shapes) #ifndef CGAL_CIRCULAR_ARC_POINT_2_H #define CGAL_CIRCULAR_ARC_POINT_2_H #include #include #include #include namespace CGAL { template < typename CircularKernel > class Circular_arc_point_2 : public CircularKernel::Kernel_base::Circular_arc_point_2 { typedef typename CircularKernel::Kernel_base::Circular_arc_point_2 RCircular_arc_point_2; typedef typename CircularKernel::Point_2 Point_2; typedef typename CircularKernel::Circle_2 Circle_2; typedef typename CircularKernel::Root_of_2 Root_of_2; public: typedef typename CircularKernel::Root_for_circles_2_2 Root_for_circles_2_2; typedef CircularKernel R; typedef RCircular_arc_point_2 Rep; const Rep& rep() const { return *this; } Rep& rep() { return *this; } Circular_arc_point_2() : RCircular_arc_point_2(typename R::Construct_circular_arc_point_2()()) {} Circular_arc_point_2(const Root_for_circles_2_2 & np) : RCircular_arc_point_2(typename R::Construct_circular_arc_point_2()(np)) {} Circular_arc_point_2(const RCircular_arc_point_2 & p) : RCircular_arc_point_2(p) {} Circular_arc_point_2(const Point_2 & p) : RCircular_arc_point_2(typename R::Construct_circular_arc_point_2()(p)) {} typename cpp11::result_of::type x() const { return typename R::Compute_circular_x_2()(*this); } typename cpp11::result_of::type y() const { return typename R::Compute_circular_y_2()(*this); } Bbox_2 bbox() const { return typename R::Construct_bbox_2()(*this); } }; template < typename CircularKernel > inline bool operator==(const Circular_arc_point_2 &p, const Circular_arc_point_2 &q) { return CircularKernel().equal_2_object()(p, q); } template < typename CircularKernel > inline bool operator!=(const Circular_arc_point_2 &p, const Circular_arc_point_2 &q) { return ! (p == q); } template < typename CircularKernel > inline bool operator<(const Circular_arc_point_2 &p, const Circular_arc_point_2 &q) { return CircularKernel().compare_xy_2_object()(p, q) == CGAL::SMALLER; } template < typename CircularKernel > inline bool operator>(const Circular_arc_point_2 &p, const Circular_arc_point_2 &q) { return CircularKernel().compare_xy_2_object()(p, q) == CGAL::LARGER; } template < typename CircularKernel > inline bool operator<=(const Circular_arc_point_2 &p, const Circular_arc_point_2 &q) { CGAL::Comparison_result c = CircularKernel().compare_xy_2_object()(p, q); return (c == CGAL::SMALLER) || (c == CGAL::EQUAL); } template < typename CircularKernel > inline bool operator>=(const Circular_arc_point_2 &p, const Circular_arc_point_2 &q) { CGAL::Comparison_result c = CircularKernel().compare_xy_2_object()(p, q); return (c == CGAL::LARGER) || (c == CGAL::EQUAL); } template < typename CK > std::istream & operator>>(std::istream & is, Circular_arc_point_2 &p) { typedef typename CK::Root_for_circles_2_2 Root_for_circles_2_2; Root_for_circles_2_2 r; is >> r; if(is) p = Circular_arc_point_2(r); return is; } template < class CK > std::ostream& operator<<(std::ostream &os, const Circular_arc_point_2 &p) { return os << p.x() << " " << p.y() << " "; } } //namespace CGAL #endif // CGAL_CIRCULAR_ARC_POINT_2_H