123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- // Boost.Geometry (aka GGL, Generic Geometry Library)
- // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
- // This file was modified by Oracle on 2013-2022.
- // Modifications copyright (c) 2013-2022 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_RELATE_IMPLEMENTATION_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_RELATE_IMPLEMENTATION_HPP
- #include <boost/geometry/algorithms/detail/relate/areal_areal.hpp>
- #include <boost/geometry/algorithms/detail/relate/box_areal.hpp>
- #include <boost/geometry/algorithms/detail/relate/interface.hpp>
- #include <boost/geometry/algorithms/detail/relate/linear_areal.hpp>
- #include <boost/geometry/algorithms/detail/relate/linear_linear.hpp>
- #include <boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>
- #include <boost/geometry/algorithms/detail/relate/point_geometry.hpp>
- #include <boost/geometry/algorithms/detail/relate/point_point.hpp>
- #include <boost/geometry/core/tags.hpp>
- #include <boost/geometry/strategies/relate/cartesian.hpp>
- #include <boost/geometry/strategies/relate/geographic.hpp>
- #include <boost/geometry/strategies/relate/spherical.hpp>
- namespace boost { namespace geometry {
- #ifndef DOXYGEN_NO_DISPATCH
- namespace dispatch {
- template <typename Point1, typename Point2>
- struct relate<Point1, Point2, point_tag, point_tag, 0, 0, false>
- : detail::relate::point_point<Point1, Point2>
- {};
- template <typename Point, typename MultiPoint>
- struct relate<Point, MultiPoint, point_tag, multi_point_tag, 0, 0, false>
- : detail::relate::point_multipoint<Point, MultiPoint>
- {};
- template <typename MultiPoint, typename Point>
- struct relate<MultiPoint, Point, multi_point_tag, point_tag, 0, 0, false>
- : detail::relate::multipoint_point<MultiPoint, Point>
- {};
- template <typename MultiPoint1, typename MultiPoint2>
- struct relate<MultiPoint1, MultiPoint2, multi_point_tag, multi_point_tag, 0, 0, false>
- : detail::relate::multipoint_multipoint<MultiPoint1, MultiPoint2>
- {};
- // TODO - for now commented out because before implementing it we must consider:
- // 1. how the Box degenerated to a Point should be treated
- // 2. what should be the definition of a Box degenerated to a Point
- // 3. what fields should the matrix/mask contain for dimension > 2 and dimension > 9
- //
- //template <typename Point, typename Box, int TopDim2>
- //struct relate<Point, Box, point_tag, box_tag, 0, TopDim2, false>
- // : detail::relate::point_box<Point, Box>
- //{};
- //
- //template <typename Box, typename Point, int TopDim1>
- //struct relate<Box, Point, box_tag, point_tag, TopDim1, 0, false>
- // : detail::relate::box_point<Box, Point>
- //{};
- template <typename Point, typename Geometry, typename Tag2, int TopDim2>
- struct relate<Point, Geometry, point_tag, Tag2, 0, TopDim2, true>
- : detail::relate::point_geometry<Point, Geometry>
- {};
- template <typename Geometry, typename Point, typename Tag1, int TopDim1>
- struct relate<Geometry, Point, Tag1, point_tag, TopDim1, 0, true>
- : detail::relate::geometry_point<Geometry, Point>
- {};
- template <typename MultiPoint, typename Geometry, typename Tag2, int TopDim2>
- struct relate<MultiPoint, Geometry, multi_point_tag, Tag2, 0, TopDim2, false>
- : detail::relate::multi_point_geometry<MultiPoint, Geometry>
- {};
- template <typename Geometry, typename MultiPoint, typename Tag1, int TopDim1>
- struct relate<Geometry, MultiPoint, Tag1, multi_point_tag, TopDim1, 0, false>
- : detail::relate::geometry_multi_point<Geometry, MultiPoint>
- {};
- template <typename Linear1, typename Linear2, typename Tag1, typename Tag2>
- struct relate<Linear1, Linear2, Tag1, Tag2, 1, 1, true>
- : detail::relate::linear_linear<Linear1, Linear2>
- {};
- template <typename Linear, typename Areal, typename Tag1, typename Tag2>
- struct relate<Linear, Areal, Tag1, Tag2, 1, 2, true>
- : detail::relate::linear_areal<Linear, Areal>
- {};
- template <typename Areal, typename Linear, typename Tag1, typename Tag2>
- struct relate<Areal, Linear, Tag1, Tag2, 2, 1, true>
- : detail::relate::areal_linear<Areal, Linear>
- {};
- template <typename Areal1, typename Areal2, typename Tag1, typename Tag2>
- struct relate<Areal1, Areal2, Tag1, Tag2, 2, 2, true>
- : detail::relate::areal_areal<Areal1, Areal2>
- {};
- template <typename Box, typename Ring>
- struct relate<Box, Ring, box_tag, ring_tag, 2, 2, false>
- : detail::relate::box_areal<Box, Ring>
- {};
- template <typename Box, typename Polygon>
- struct relate<Box, Polygon, box_tag, polygon_tag, 2, 2, false>
- : detail::relate::box_areal<Box, Polygon>
- {};
- template <typename Box, typename MultiPolygon>
- struct relate<Box, MultiPolygon, box_tag, multi_polygon_tag, 2, 2, false>
- : detail::relate::box_areal<Box, MultiPolygon>
- {};
- } // namespace dispatch
- #endif // DOXYGEN_NO_DISPATCH
- }} // namespace boost::geometry
- #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_RELATE_IMPLEMENTATION_HPP
|