// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2011 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2011 Bruno Lalande, Paris, France. // Copyright (c) 2009-2011 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_MULTI_ALGORITHMS_ENVELOPE_HPP #define BOOST_GEOMETRY_MULTI_ALGORITHMS_ENVELOPE_HPP #include #include #include #include #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace envelope { template struct envelope_multi_linestring { static inline void apply(MultiLinestring const& mp, Box& mbr) { assign_inverse(mbr); for (typename boost::range_iterator::type it = mp.begin(); it != mp.end(); ++it) { envelope_range_additional(*it, mbr); } } }; // version for multi_polygon: outer ring's of all polygons template struct envelope_multi_polygon { static inline void apply(MultiPolygon const& mp, Box& mbr) { assign_inverse(mbr); for (typename boost::range_const_iterator::type it = mp.begin(); it != mp.end(); ++it) { envelope_range_additional(exterior_ring(*it), mbr); } } }; }} // namespace detail::envelope #endif #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { template < typename Multi, typename Box, typename StrategyLess, typename StrategyGreater > struct envelope : detail::envelope::envelope_range {}; template < typename Multi, typename Box, typename StrategyLess, typename StrategyGreater > struct envelope : detail::envelope::envelope_multi_linestring {}; template < typename Multi, typename Box, typename StrategyLess, typename StrategyGreater > struct envelope : detail::envelope::envelope_multi_polygon {}; } // namespace dispatch #endif }} // namespace boost::geometry #endif // BOOST_GEOMETRY_MULTI_ALGORITHMS_ENVELOPE_HPP