123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- // Boost.Geometry (aka GGL, Generic Geometry Library)
- // Copyright (c) 2015 Barend Gehrels, Amsterdam, the Netherlands.
- // This file was modified by Oracle on 2015-2021.
- // Modifications copyright (c) 2015-2021, Oracle and/or its affiliates.
- // Contributed and/or modified by Adam Wulkiewicz, 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_SECTIONS_FUNCTIONS_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_SECTIONS_FUNCTIONS_HPP
- #include <boost/geometry/core/access.hpp>
- #include <boost/geometry/core/coordinate_type.hpp>
- #include <boost/geometry/algorithms/detail/recalculate.hpp>
- #include <boost/geometry/policies/robustness/robust_point_type.hpp>
- // For spherical/geographic longitudes covered_by point/box
- #include <boost/geometry/strategies/cartesian/point_in_box.hpp>
- #include <boost/geometry/util/select_coordinate_type.hpp>
- namespace boost { namespace geometry
- {
- #ifndef DOXYGEN_NO_DETAIL
- namespace detail { namespace section
- {
- // TODO: This code is CS-specific, should be moved to strategies
- template
- <
- std::size_t Dimension,
- typename Geometry,
- typename CastedCSTag = typename tag_cast
- <
- typename cs_tag<Geometry>::type,
- spherical_tag
- >::type
- >
- struct preceding_check
- {
- template <typename Point, typename Box>
- static inline bool apply(int dir, Point const& point, Box const& /*point_box*/, Box const& other_box)
- {
- return (dir == 1 && get<Dimension>(point) < get<min_corner, Dimension>(other_box))
- || (dir == -1 && get<Dimension>(point) > get<max_corner, Dimension>(other_box));
- }
- };
- template <typename Geometry>
- struct preceding_check<0, Geometry, spherical_tag>
- {
- template <typename Point, typename Box>
- static inline bool apply(int dir, Point const& point, Box const& point_box, Box const& other_box)
- {
- typedef typename select_coordinate_type
- <
- Point, Box
- >::type calc_t;
- typedef typename coordinate_system<Point>::type::units units_t;
- calc_t const c0 = 0;
- calc_t const value = get<0>(point);
- calc_t const other_min = get<min_corner, 0>(other_box);
- calc_t const other_max = get<max_corner, 0>(other_box);
- bool const pt_covered = strategy::within::detail::covered_by_range
- <
- Point, 0, spherical_tag
- >::apply(value,
- other_min,
- other_max);
- if (pt_covered)
- {
- return false;
- }
- if (dir == 1)
- {
- calc_t const diff_min = math::longitude_distance_signed
- <
- units_t, calc_t
- >(other_min, value);
- calc_t const diff_min_min = math::longitude_distance_signed
- <
- units_t, calc_t
- >(other_min, get<min_corner, 0>(point_box));
- return diff_min < c0 && diff_min_min <= c0 && diff_min_min <= diff_min;
- }
- else if (dir == -1)
- {
- calc_t const diff_max = math::longitude_distance_signed
- <
- units_t, calc_t
- >(other_max, value);
- calc_t const diff_max_max = math::longitude_distance_signed
- <
- units_t, calc_t
- >(other_max, get<max_corner, 0>(point_box));
- return diff_max > c0 && diff_max_max >= c0 && diff_max <= diff_max_max;
- }
- return false;
- }
- };
- template
- <
- std::size_t Dimension,
- typename Point,
- typename Box,
- typename RobustPolicy
- >
- inline bool preceding(int dir,
- Point const& point,
- Box const& point_box,
- Box const& other_box,
- RobustPolicy const& robust_policy)
- {
- using box_point_type = typename geometry::point_type<Box>::type;
- typename geometry::robust_point_type<box_point_type, RobustPolicy>::type robust_point;
- geometry::recalculate(robust_point, point, robust_policy);
- // After recalculate() to prevent warning: 'robust_point' may be used uninitialized
- assert_coordinate_type_equal(robust_point, point_box);
- return preceding_check<Dimension, Box>::apply(dir, robust_point,
- point_box,
- other_box);
- }
- template
- <
- std::size_t Dimension,
- typename Point,
- typename Box,
- typename RobustPolicy
- >
- inline bool exceeding(int dir,
- Point const& point,
- Box const& point_box,
- Box const& other_box,
- RobustPolicy const& robust_policy)
- {
- return preceding<Dimension>(-dir, point, point_box, other_box, robust_policy);
- }
- }} // namespace detail::section
- #endif
- }} // namespace boost::geometry
- #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_SECTIONS_FUNCTIONS_HPP
|