// 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. // This file was modified by Oracle on 2015-2017. // Modifications copyright (c) 2015-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_POINT_IN_BOX_HPP #define BOOST_GEOMETRY_STRATEGIES_CARTESIAN_POINT_IN_BOX_HPP #include #include #include #include #include namespace boost { namespace geometry { namespace strategy { namespace within { struct within_coord { template static inline bool apply(Value1 const& value, Value2 const& min_value, Value2 const& max_value) { return value > min_value && value < max_value; } }; struct covered_by_coord { template static inline bool apply(Value1 const& value, Value2 const& min_value, Value2 const& max_value) { return value >= min_value && value <= max_value; } }; template struct within_range : within_coord {}; template struct covered_by_range : covered_by_coord {}; // NOTE: the result would be the same if instead of structs defined below // the above xxx_range were used with the following arguments: // (min_value + diff_min, min_value, max_value) struct within_longitude_diff { template static inline bool apply(CalcT const& diff_min, CalcT const& min_value, CalcT const& max_value) { CalcT const c0 = 0; return diff_min > c0 && (min_value + diff_min < max_value /*|| max_value - diff_min > min_value*/); } }; struct covered_by_longitude_diff { template static inline bool apply(CalcT const& diff_min, CalcT const& min_value, CalcT const& max_value) { return min_value + diff_min <= max_value /*|| max_value - diff_min >= min_value*/; } }; template struct longitude_range { template static inline bool apply(Value1 const& value, Value2 const& min_value, Value2 const& max_value) { typedef typename select_most_precise < Value1, Value2 >::type calc_t; typedef typename coordinate_system::type::units units_t; typedef math::detail::constants_on_spheroid constants; if (CoordCheck::apply(value, min_value, max_value)) { return true; } // min <= max <=> diff >= 0 calc_t const diff_ing = max_value - min_value; // if containing covers the whole globe it contains all if (diff_ing >= constants::period()) { return true; } // calculate positive longitude translation with min_value as origin calc_t const diff_min = math::longitude_distance_unsigned(min_value, value); return DiffCheck::template apply(diff_min, min_value, max_value); } }; // spherical_equatorial_tag, spherical_polar_tag and geographic_cat are casted to spherical_tag template struct within_range : longitude_range {}; template struct covered_by_range : longitude_range {}; template < template class SubStrategy, typename Point, typename Box, std::size_t Dimension, std::size_t DimensionCount > struct relate_point_box_loop { static inline bool apply(Point const& point, Box const& box) { typedef typename tag_cast::type, spherical_tag>::type cs_tag_t; if (! SubStrategy::apply(get(point), get(box), get(box)) ) { return false; } return relate_point_box_loop < SubStrategy, Point, Box, Dimension + 1, DimensionCount >::apply(point, box); } }; template < template class SubStrategy, typename Point, typename Box, std::size_t DimensionCount > struct relate_point_box_loop { static inline bool apply(Point const& , Box const& ) { return true; } }; template < typename Point, typename Box, template class SubStrategy = within_range > struct point_in_box { static inline bool apply(Point const& point, Box const& box) { return relate_point_box_loop < SubStrategy, Point, Box, 0, dimension::type::value >::apply(point, box); } }; } // namespace within #ifndef DOXYGEN_NO_STRATEGY_SPECIALIZATIONS namespace within { namespace services { template struct default_strategy < Point, Box, point_tag, box_tag, pointlike_tag, areal_tag, cartesian_tag, cartesian_tag > { typedef within::point_in_box type; }; // spherical_equatorial_tag, spherical_polar_tag and geographic_cat are casted to spherical_tag template struct default_strategy < Point, Box, point_tag, box_tag, pointlike_tag, areal_tag, spherical_tag, spherical_tag > { typedef within::point_in_box type; }; }} // namespace within::services namespace covered_by { namespace services { template struct default_strategy < Point, Box, point_tag, box_tag, pointlike_tag, areal_tag, cartesian_tag, cartesian_tag > { typedef within::point_in_box < Point, Box, within::covered_by_range > type; }; // spherical_equatorial_tag, spherical_polar_tag and geographic_cat are casted to spherical_tag template struct default_strategy < Point, Box, point_tag, box_tag, pointlike_tag, areal_tag, spherical_tag, spherical_tag > { typedef within::point_in_box < Point, Box, within::covered_by_range > type; }; }} // namespace covered_by::services #endif // DOXYGEN_NO_STRATEGY_SPECIALIZATIONS }}} // namespace boost::geometry::strategy #endif // BOOST_GEOMETRY_STRATEGIES_CARTESIAN_POINT_IN_BOX_HPP