intersects.hpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands.
  3. // Copyright (c) 2008-2014 Bruno Lalande, Paris, France.
  4. // Copyright (c) 2009-2014 Mateusz Loskot, London, UK.
  5. // This file was modified by Oracle on 2013-2014.
  6. // Modifications copyright (c) 2013-2014, Oracle and/or its affiliates.
  7. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  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. #ifndef BOOST_GEOMETRY_ALGORITHMS_INTERSECTS_HPP
  14. #define BOOST_GEOMETRY_ALGORITHMS_INTERSECTS_HPP
  15. #include <deque>
  16. #include <boost/geometry/geometries/concepts/check.hpp>
  17. #include <boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>
  18. #include <boost/geometry/algorithms/disjoint.hpp>
  19. #include <boost/geometry/policies/robustness/no_rescale_policy.hpp>
  20. #include <boost/geometry/policies/robustness/segment_ratio_type.hpp>
  21. namespace boost { namespace geometry
  22. {
  23. /*!
  24. \brief \brief_check{has at least one intersection (crossing or self-tangency)}
  25. \note This function can be called for one geometry (self-intersection) and
  26. also for two geometries (intersection)
  27. \ingroup intersects
  28. \tparam Geometry \tparam_geometry
  29. \param geometry \param_geometry
  30. \return \return_check{is self-intersecting}
  31. \qbk{distinguish,one geometry}
  32. \qbk{[def __one_parameter__]}
  33. \qbk{[include reference/algorithms/intersects.qbk]}
  34. */
  35. template <typename Geometry>
  36. inline bool intersects(Geometry const& geometry)
  37. {
  38. concept::check<Geometry const>();
  39. typedef typename geometry::point_type<Geometry>::type point_type;
  40. typedef detail::no_rescale_policy rescale_policy_type;
  41. typedef detail::overlay::turn_info
  42. <
  43. point_type,
  44. typename segment_ratio_type<point_type, rescale_policy_type>::type
  45. > turn_info;
  46. std::deque<turn_info> turns;
  47. typedef detail::overlay::get_turn_info
  48. <
  49. detail::overlay::assign_null_policy
  50. > turn_policy;
  51. rescale_policy_type robust_policy;
  52. detail::disjoint::disjoint_interrupt_policy policy;
  53. detail::self_get_turn_points::get_turns
  54. <
  55. turn_policy
  56. >::apply(geometry, robust_policy, turns, policy);
  57. return policy.has_intersections;
  58. }
  59. /*!
  60. \brief \brief_check2{have at least one intersection}
  61. \ingroup intersects
  62. \tparam Geometry1 \tparam_geometry
  63. \tparam Geometry2 \tparam_geometry
  64. \param geometry1 \param_geometry
  65. \param geometry2 \param_geometry
  66. \return \return_check2{intersect each other}
  67. \qbk{distinguish,two geometries}
  68. \qbk{[include reference/algorithms/intersects.qbk]}
  69. */
  70. template <typename Geometry1, typename Geometry2>
  71. inline bool intersects(Geometry1 const& geometry1, Geometry2 const& geometry2)
  72. {
  73. concept::check<Geometry1 const>();
  74. concept::check<Geometry2 const>();
  75. return ! geometry::disjoint(geometry1, geometry2);
  76. }
  77. }} // namespace boost::geometry
  78. #endif // BOOST_GEOMETRY_ALGORITHMS_INTERSECTS_HPP