// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2015 Bruno Lalande, Paris, France. // Copyright (c) 2009-2015 Mateusz Loskot, London, UK. // Copyright (c) 2013-2015 Adam Wulkiewicz, Lodz, Poland. // This file was modified by Oracle on 2015, 2016, 2017. // Modifications copyright (c) 2016-2017, Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // 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_STRATEGIES_CARTESIAN_BOX_IN_BOX_HPP #define BOOST_GEOMETRY_STRATEGIES_CARTESIAN_BOX_IN_BOX_HPP #include #include #include #include #include namespace boost { namespace geometry { namespace strategy { namespace within { struct box_within_coord { template static inline bool apply(BoxContainedValue const& bed_min, BoxContainedValue const& bed_max, BoxContainingValue const& bing_min, BoxContainingValue const& bing_max) { return bing_min <= bed_min && bed_max <= bing_max // contained in containing && bed_min < bed_max; // interiors overlap } }; struct box_covered_by_coord { template static inline bool apply(BoxContainedValue const& bed_min, BoxContainedValue const& bed_max, BoxContainingValue const& bing_min, BoxContainingValue const& bing_max) { return bed_min >= bing_min && bed_max <= bing_max; } }; template struct box_within_range : box_within_coord {}; template struct box_covered_by_range : box_covered_by_coord {}; struct box_within_longitude_diff { template static inline bool apply(CalcT const& diff_ed) { return diff_ed > CalcT(0); } }; struct box_covered_by_longitude_diff { template static inline bool apply(CalcT const&) { return true; } }; template struct box_longitude_range { template static inline bool apply(BoxContainedValue const& bed_min, BoxContainedValue const& bed_max, BoxContainingValue const& bing_min, BoxContainingValue const& bing_max) { typedef typename select_most_precise < BoxContainedValue, BoxContainingValue >::type calc_t; typedef typename coordinate_system::type::units units_t; typedef math::detail::constants_on_spheroid constants; if (CoordCheck::apply(bed_min, bed_max, bing_min, bing_max)) { return true; } // min <= max <=> diff >= 0 calc_t const diff_ed = bed_max - bed_min; calc_t const diff_ing = bing_max - bing_min; // if containing covers the whole globe it contains all if (diff_ing >= constants::period()) { return true; } // if containing is smaller it cannot contain // and check interior (within vs covered_by) if (diff_ing < diff_ed || ! InteriorCheck::apply(diff_ed)) { return false; } // calculate positive longitude translation with bing_min as origin calc_t const diff_min = math::longitude_distance_unsigned(bing_min, bed_min); // max of contained translated into the containing origin must be lesser than max of containing return bing_min + diff_min + diff_ed <= bing_max /*|| bing_max - diff_min - diff_ed >= bing_min*/; } }; // spherical_equatorial_tag, spherical_polar_tag and geographic_cat are casted to spherical_tag template struct box_within_range : box_longitude_range {}; template struct box_covered_by_range : box_longitude_range {}; template < template class SubStrategy, typename Box1, typename Box2, std::size_t Dimension, std::size_t DimensionCount > struct relate_box_box_loop { static inline bool apply(Box1 const& b_contained, Box2 const& b_containing) { assert_dimension_equal(); typedef typename tag_cast::type, spherical_tag>::type cs_tag_t; if (! SubStrategy::apply( get(b_contained), get(b_contained), get(b_containing), get(b_containing) ) ) { return false; } return relate_box_box_loop < SubStrategy, Box1, Box2, Dimension + 1, DimensionCount >::apply(b_contained, b_containing); } }; template < template class SubStrategy, typename Box1, typename Box2, std::size_t DimensionCount > struct relate_box_box_loop { static inline bool apply(Box1 const& , Box2 const& ) { return true; } }; template < typename Box1, typename Box2, template class SubStrategy = box_within_range > struct box_in_box { static inline bool apply(Box1 const& box1, Box2 const& box2) { return relate_box_box_loop < SubStrategy, Box1, Box2, 0, dimension::type::value >::apply(box1, box2); } }; } // namespace within #ifndef DOXYGEN_NO_STRATEGY_SPECIALIZATIONS namespace within { namespace services { template struct default_strategy < BoxContained, BoxContaining, box_tag, box_tag, areal_tag, areal_tag, cartesian_tag, cartesian_tag > { typedef within::box_in_box type; }; // spherical_equatorial_tag, spherical_polar_tag and geographic_cat are casted to spherical_tag template struct default_strategy < BoxContained, BoxContaining, box_tag, box_tag, areal_tag, areal_tag, spherical_tag, spherical_tag > { typedef within::box_in_box type; }; }} // namespace within::services namespace covered_by { namespace services { template struct default_strategy < BoxContained, BoxContaining, box_tag, box_tag, areal_tag, areal_tag, cartesian_tag, cartesian_tag > { typedef within::box_in_box < BoxContained, BoxContaining, within::box_covered_by_range > type; }; // spherical_equatorial_tag, spherical_polar_tag and geographic_cat are casted to spherical_tag template struct default_strategy < BoxContained, BoxContaining, box_tag, box_tag, areal_tag, areal_tag, spherical_tag, spherical_tag > { typedef within::box_in_box < BoxContained, BoxContaining, within::box_covered_by_range > type; }; }} // namespace covered_by::services #endif // DOXYGEN_NO_STRATEGY_SPECIALIZATIONS }}} // namespace boost::geometry::strategy #endif // BOOST_GEOMETRY_STRATEGIES_CARTESIAN_BOX_IN_BOX_HPP