// Copyright (c) 2013 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/Minkowski_sum_2/include/CGAL/Polygon_nop_decomposition_2.h $ // $Id: Polygon_nop_decomposition_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) : Efi Fogel #ifndef CGAL_POLYGON_NOP_DECOMPOSITION_2_H #define CGAL_POLYGON_NOP_DECOMPOSITION_2_H #include #include namespace CGAL { /*! \class * Nop decomposition strategy. * Used for polygons that are already convex. */ template > class Polygon_nop_decomposition_2 { public: typedef Kernel_ Kernel; typedef Container_ Container; typedef CGAL::Polygon_2 Polygon_2; template OutputIterator_ operator()(const Polygon_2& pgn, OutputIterator_ oi) const { *oi++ = pgn; return oi; } }; } //namespace CGAL #endif