disjoint.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2012 Barend Gehrels, Amsterdam, the Netherlands.
  3. // Copyright (c) 2012 Bruno Lalande, Paris, France.
  4. // Copyright (c) 2012 Mateusz Loskot, London, UK.
  5. // Use, modification and distribution is subject to the Boost Software License,
  6. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_GEOMETRY_MULTI_ALGORITHMS_DISJOINT_HPP
  9. #define BOOST_GEOMETRY_MULTI_ALGORITHMS_DISJOINT_HPP
  10. #include <boost/geometry/algorithms/disjoint.hpp>
  11. #include <boost/geometry/multi/algorithms/covered_by.hpp>
  12. #include <boost/geometry/multi/core/tags.hpp>
  13. #include <boost/geometry/multi/geometries/concepts/check.hpp>
  14. namespace boost { namespace geometry
  15. {
  16. #ifndef DOXYGEN_NO_DISPATCH
  17. namespace dispatch
  18. {
  19. template <typename Point, typename MultiPolygon>
  20. struct disjoint<Point, MultiPolygon, 2, point_tag, multi_polygon_tag, false>
  21. : detail::disjoint::reverse_covered_by<Point, MultiPolygon>
  22. {};
  23. } // namespace dispatch
  24. #endif // DOXYGEN_NO_DISPATCH
  25. }} // namespace boost::geometry
  26. #endif // BOOST_GEOMETRY_MULTI_ALGORITHMS_DISJOINT_HPP