// Copyright (c) 2005 Tel-Aviv University (Israel). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.1/Boolean_set_operations_2/include/CGAL/General_polygon_set_2.h $ // $Id: General_polygon_set_2.h 254d60f 2019-10-19T15:23:19+02:00 Sébastien Loriot // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Baruch Zukerman // Efi Fogel #ifndef CGAL_GENERAL_POLYGON_SET_2_H #define CGAL_GENERAL_POLYGON_SET_2_H #include #include #include #include #include #include #include namespace CGAL { // General_polygon_set_2 template > class General_polygon_set_2 : public General_polygon_set_on_surface_2 ::Traits> { protected: typedef General_polygon_set_2 Self; public: typedef Traits_ Traits_2; typedef Dcel_ Dcel; typedef General_polygon_set_on_surface_2 ::Traits> Base; typedef CGAL::Arrangement_2 Arrangement_2; typedef typename Base::Polygon_2 Polygon_2; typedef typename Base::Polygon_with_holes_2 Polygon_with_holes_2; // default costructor General_polygon_set_2() : Base() {} // constructor with traits object General_polygon_set_2(const Traits_2& tr) : Base(tr) {} explicit General_polygon_set_2(const Polygon_2& pgn) : Base(pgn) {} explicit General_polygon_set_2(const Polygon_with_holes_2& pgn_with_holes): Base(pgn_with_holes) {} // For some reason the below functions (the ones that we call "using" for) // are hidden by the function in this class and are not found in the parent's // class (General_polygon_set_on_surface_2) when they are called on an // object of type General_polygon_set_2. // Check in the Vandervoorde / Stroustrup books what is the exact reason. // (There may be a better and more correct solution.) using Base::intersection; using Base::join; using Base::symmetric_difference; inline void intersection(const Self& ps1, const Self& ps2) { Base::intersection(static_cast(ps1), static_cast(ps2)); } inline void join(const Self& ps1, const Self& ps2) { Base::join(static_cast(ps1), static_cast(ps2)); } inline void symmetric_difference(const Self& ps1, const Self& ps2) { Base::symmetric_difference(static_cast(ps1), static_cast(ps2)); } //@{ /*! Obtain a const reference to the underlying arrangement * \return the underlying arrangement. */ const Arrangement_2& arrangement() const { return *(static_cast(this->m_arr)); } /*! Obtain a reference to the underlying arrangement * \return the underlying arrangement. */ Arrangement_2& arrangement() { return *(static_cast(this->m_arr)); } //@} }; } //namespace CGAL #include #endif