| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // Boost.Geometry
- // Copyright (c) 2017-2020, Oracle and/or its affiliates.
- // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
- // 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_STRATEGIES_DISJOINT_HPP
- #define BOOST_GEOMETRY_STRATEGIES_DISJOINT_HPP
- #include <boost/geometry/core/cs.hpp>
- #include <boost/geometry/core/point_type.hpp>
- #include <boost/geometry/core/topological_dimension.hpp>
- #include <boost/geometry/strategies/covered_by.hpp>
- #include <boost/geometry/strategies/default_strategy.hpp>
- #include <boost/geometry/strategy/relate.hpp>
- namespace boost { namespace geometry { namespace strategy { namespace disjoint
- {
- #ifndef DOXYGEN_NO_STRATEGY_SPECIALIZATIONS
- namespace services
- {
- template
- <
- typename Geometry1,
- typename Geometry2,
- typename Tag1 = tag_t<Geometry1>,
- typename Tag2 = tag_t<Geometry2>,
- int TopDim1 = geometry::topological_dimension<Geometry1>::value,
- int TopDim2 = geometry::topological_dimension<Geometry2>::value,
- typename CsTag1 = cs_tag_t<Geometry1>,
- typename CsTag2 = cs_tag_t<Geometry2>
- >
- struct default_strategy
- : relate::services::default_strategy
- <
- Geometry1, Geometry2
- >
- {};
- template <typename Point, typename Box>
- struct default_strategy<Point, Box, point_tag, box_tag, 0, 2>
- : strategy::covered_by::services::default_strategy<Point, Box>
- {};
- template <typename Box, typename Point>
- struct default_strategy<Box, Point, box_tag, point_tag, 2, 0>
- : strategy::covered_by::services::default_strategy<Point, Box>
- {};
- template <typename MultiPoint, typename Box>
- struct default_strategy<MultiPoint, Box, multi_point_tag, box_tag, 0, 2>
- : strategy::covered_by::services::default_strategy
- <
- point_type_t<MultiPoint>,
- Box
- >
- {};
- template <typename Box, typename MultiPoint>
- struct default_strategy<Box, MultiPoint, box_tag, multi_point_tag, 2, 0>
- : strategy::covered_by::services::default_strategy
- <
- point_type_t<MultiPoint>,
- Box
- >
- {};
- } // namespace services
- #endif // DOXYGEN_NO_STRATEGY_SPECIALIZATIONS
- }}}} // namespace boost::geometry::strategy::disjoint
- #endif // BOOST_GEOMETRY_STRATEGIES_DISJOINT_HPP
|