// Boost.Geometry // Copyright (c) 2018 Oracle and/or its affiliates. // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle // 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_DETAIL_ENVELOPE_AREAL_HPP #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_AREAL_HPP #include #include #include #include #include #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace envelope { template struct envelope_polygon { template static inline void apply(Polygon const& polygon, Box& mbr, Strategy const& strategy) { typename ring_return_type::type ext_ring = exterior_ring(polygon); if (geometry::is_empty(ext_ring)) { // if the exterior ring is empty, consider the interior rings envelope_multi_range < EnvelopePolicy >::apply(interior_rings(polygon), mbr, strategy); } else { // otherwise, consider only the exterior ring EnvelopePolicy::apply(ext_ring, mbr, strategy); } } }; }} // namespace detail::envelope #endif // DOXYGEN_NO_DETAIL #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { template struct envelope : detail::envelope::envelope_range {}; template struct envelope : detail::envelope::envelope_linestring_or_ring_on_spheroid {}; template struct envelope : detail::envelope::envelope_linestring_or_ring_on_spheroid {}; template struct envelope : detail::envelope::envelope_polygon < detail::envelope::envelope_range > {}; template struct envelope : detail::envelope::envelope_polygon < detail::envelope::envelope_linestring_or_ring_on_spheroid > {}; template struct envelope : detail::envelope::envelope_polygon < detail::envelope::envelope_linestring_or_ring_on_spheroid > {}; template struct envelope : detail::envelope::envelope_multi_range < detail::envelope::envelope_polygon < detail::envelope::envelope_range > > {}; template struct envelope : detail::envelope::envelope_multi_range < detail::envelope::envelope_polygon < detail::envelope::envelope_linestring_or_ring_on_spheroid > > {}; template struct envelope : detail::envelope::envelope_multi_range < detail::envelope::envelope_polygon < detail::envelope::envelope_linestring_or_ring_on_spheroid > > {}; } // namespace dispatch #endif // DOXYGEN_NO_DISPATCH }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_AREAL_HPP