crosses.hpp 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
  3. // Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
  4. // Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
  5. // Copyright (c) 2014 Samuel Debionne, Grenoble, France.
  6. // This file was modified by Oracle on 2014.
  7. // Modifications copyright (c) 2014 Oracle and/or its affiliates.
  8. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
  9. // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
  10. // Use, modification and distribution is subject to the Boost Software License,
  11. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  12. // http://www.boost.org/LICENSE_1_0.txt)
  13. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  14. #ifndef BOOST_GEOMETRY_ALGORITHMS_CROSSES_HPP
  15. #define BOOST_GEOMETRY_ALGORITHMS_CROSSES_HPP
  16. #include <cstddef>
  17. #include <boost/variant/apply_visitor.hpp>
  18. #include <boost/variant/static_visitor.hpp>
  19. #include <boost/variant/variant_fwd.hpp>
  20. #include <boost/geometry/core/access.hpp>
  21. #include <boost/geometry/geometries/concepts/check.hpp>
  22. #include <boost/geometry/algorithms/relate.hpp>
  23. #include <boost/geometry/algorithms/detail/relate/relate_impl.hpp>
  24. namespace boost { namespace geometry
  25. {
  26. #ifndef DOXYGEN_NO_DISPATCH
  27. namespace dispatch
  28. {
  29. template
  30. <
  31. typename Geometry1,
  32. typename Geometry2,
  33. typename Tag1 = typename tag<Geometry1>::type,
  34. typename Tag2 = typename tag<Geometry2>::type
  35. >
  36. struct crosses
  37. : detail::relate::relate_impl
  38. <
  39. detail::de9im::static_mask_crosses_type,
  40. Geometry1,
  41. Geometry2
  42. >
  43. {};
  44. } // namespace dispatch
  45. #endif // DOXYGEN_NO_DISPATCH
  46. namespace resolve_variant
  47. {
  48. template <typename Geometry1, typename Geometry2>
  49. struct crosses
  50. {
  51. static inline bool
  52. apply(
  53. const Geometry1& geometry1,
  54. const Geometry2& geometry2)
  55. {
  56. concept::check<Geometry1 const>();
  57. concept::check<Geometry2 const>();
  58. return dispatch::crosses<Geometry1, Geometry2>::apply(geometry1, geometry2);
  59. }
  60. };
  61. template <BOOST_VARIANT_ENUM_PARAMS(typename T), typename Geometry2>
  62. struct crosses<variant<BOOST_VARIANT_ENUM_PARAMS(T)>, Geometry2>
  63. {
  64. struct visitor: static_visitor<bool>
  65. {
  66. Geometry2 const& m_geometry2;
  67. visitor(Geometry2 const& geometry2)
  68. : m_geometry2(geometry2)
  69. {}
  70. template <typename Geometry1>
  71. result_type operator()(Geometry1 const& geometry1) const
  72. {
  73. return crosses
  74. <
  75. Geometry1,
  76. Geometry2
  77. >::apply(geometry1, m_geometry2);
  78. }
  79. };
  80. static inline bool
  81. apply(variant<BOOST_VARIANT_ENUM_PARAMS(T)> const& geometry1,
  82. Geometry2 const& geometry2)
  83. {
  84. return boost::apply_visitor(visitor(geometry2), geometry1);
  85. }
  86. };
  87. template <typename Geometry1, BOOST_VARIANT_ENUM_PARAMS(typename T)>
  88. struct crosses<Geometry1, variant<BOOST_VARIANT_ENUM_PARAMS(T)> >
  89. {
  90. struct visitor: static_visitor<bool>
  91. {
  92. Geometry1 const& m_geometry1;
  93. visitor(Geometry1 const& geometry1)
  94. : m_geometry1(geometry1)
  95. {}
  96. template <typename Geometry2>
  97. result_type operator()(Geometry2 const& geometry2) const
  98. {
  99. return crosses
  100. <
  101. Geometry1,
  102. Geometry2
  103. >::apply(m_geometry1, geometry2);
  104. }
  105. };
  106. static inline bool
  107. apply(Geometry1 const& geometry1,
  108. const variant<BOOST_VARIANT_ENUM_PARAMS(T)>& geometry2)
  109. {
  110. return boost::apply_visitor(visitor(geometry1), geometry2);
  111. }
  112. };
  113. template <BOOST_VARIANT_ENUM_PARAMS(typename T1), BOOST_VARIANT_ENUM_PARAMS(typename T2)>
  114. struct crosses<variant<BOOST_VARIANT_ENUM_PARAMS(T1)>, variant<BOOST_VARIANT_ENUM_PARAMS(T2)> >
  115. {
  116. struct visitor: static_visitor<bool>
  117. {
  118. template <typename Geometry1, typename Geometry2>
  119. result_type operator()(Geometry1 const& geometry1,
  120. Geometry2 const& geometry2) const
  121. {
  122. return crosses
  123. <
  124. Geometry1,
  125. Geometry2
  126. >::apply(geometry1, geometry2);
  127. }
  128. };
  129. static inline bool
  130. apply(const variant<BOOST_VARIANT_ENUM_PARAMS(T1)>& geometry1,
  131. const variant<BOOST_VARIANT_ENUM_PARAMS(T2)>& geometry2)
  132. {
  133. return boost::apply_visitor(visitor(), geometry1, geometry2);
  134. }
  135. };
  136. } // namespace resolve_variant
  137. /*!
  138. \brief \brief_check2{crosses}
  139. \ingroup crosses
  140. \tparam Geometry1 \tparam_geometry
  141. \tparam Geometry2 \tparam_geometry
  142. \param geometry1 \param_geometry
  143. \param geometry2 \param_geometry
  144. \return \return_check2{crosses}
  145. \qbk{[include reference/algorithms/crosses.qbk]}
  146. */
  147. template <typename Geometry1, typename Geometry2>
  148. inline bool crosses(Geometry1 const& geometry1, Geometry2 const& geometry2)
  149. {
  150. return resolve_variant::crosses<Geometry1, Geometry2>::apply(geometry1, geometry2);
  151. }
  152. }} // namespace boost::geometry
  153. #endif // BOOST_GEOMETRY_ALGORITHMS_CROSSES_HPP