// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2012 Bruno Lalande, Paris, France. // Copyright (c) 2009-2012 Mateusz Loskot, London, UK. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_ALGORITHMS_CLEAR_HPP #define BOOST_GEOMETRY_ALGORITHMS_CLEAR_HPP #include #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace clear { template struct collection_clear { static inline void apply(Geometry& geometry) { traits::clear::apply(geometry); } }; template struct polygon_clear { static inline void apply(Polygon& polygon) { traits::clear < typename boost::remove_reference < typename traits::interior_mutable_type::type >::type >::apply(interior_rings(polygon)); traits::clear < typename boost::remove_reference < typename traits::ring_mutable_type::type >::type >::apply(exterior_ring(polygon)); } }; template struct no_action { static inline void apply(Geometry& ) { } }; }} // namespace detail::clear #endif // DOXYGEN_NO_DETAIL #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { template < typename Geometry, typename Tag = typename tag_cast::type, multi_tag>::type > struct clear: not_implemented {}; // Point/box/segment do not have clear. So specialize to do nothing. template struct clear : detail::clear::no_action {}; template struct clear : detail::clear::no_action {}; template struct clear : detail::clear::no_action {}; template struct clear : detail::clear::collection_clear {}; template struct clear : detail::clear::collection_clear {}; // Polygon can (indirectly) use std for clear template struct clear : detail::clear::polygon_clear {}; template struct clear : detail::clear::collection_clear {}; } // namespace dispatch #endif // DOXYGEN_NO_DISPATCH namespace resolve_variant { template struct clear { static inline void apply(Geometry& geometry) { dispatch::clear::apply(geometry); } }; template struct clear > { struct visitor: static_visitor { template inline void operator()(Geometry& geometry) const { clear::apply(geometry); } }; static inline void apply(variant& geometry) { boost::apply_visitor(visitor(), geometry); } }; } // namespace resolve_variant /*! \brief Clears a linestring, ring or polygon (exterior+interiors) or multi* \details Generic function to clear a geometry. All points will be removed from the collection or collections making up the geometry. In most cases this is equivalent to the .clear() method of a std::vector<...>. In the case of a polygon, this clear functionality is automatically called for the exterior ring, and for the interior ring collection. In the case of a point, boxes and segments, nothing will happen. \ingroup clear \tparam Geometry \tparam_geometry \param geometry \param_geometry which will be cleared \note points and boxes cannot be cleared, instead they can be set to zero by "assign_zero" \qbk{[include reference/algorithms/clear.qbk]} */ template inline void clear(Geometry& geometry) { concepts::check(); resolve_variant::clear::apply(geometry); } }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_CLEAR_HPP