buffer.hpp 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  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. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
  6. // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
  7. // Use, modification and distribution is subject to the Boost Software License,
  8. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. #ifndef BOOST_GEOMETRY_ALGORITHMS_BUFFER_HPP
  11. #define BOOST_GEOMETRY_ALGORITHMS_BUFFER_HPP
  12. #include <cstddef>
  13. #include <boost/numeric/conversion/cast.hpp>
  14. #include <boost/range.hpp>
  15. #include <boost/variant/apply_visitor.hpp>
  16. #include <boost/variant/static_visitor.hpp>
  17. #include <boost/variant/variant_fwd.hpp>
  18. #include <boost/geometry/algorithms/clear.hpp>
  19. #include <boost/geometry/algorithms/envelope.hpp>
  20. #include <boost/geometry/algorithms/is_empty.hpp>
  21. #include <boost/geometry/algorithms/not_implemented.hpp>
  22. #include <boost/geometry/arithmetic/arithmetic.hpp>
  23. #include <boost/geometry/geometries/concepts/check.hpp>
  24. #include <boost/geometry/geometries/box.hpp>
  25. #include <boost/geometry/util/math.hpp>
  26. #include <boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>
  27. namespace boost { namespace geometry
  28. {
  29. #ifndef DOXYGEN_NO_DETAIL
  30. namespace detail { namespace buffer
  31. {
  32. template <typename BoxIn, typename BoxOut, typename T, std::size_t C, std::size_t D, std::size_t N>
  33. struct box_loop
  34. {
  35. typedef typename coordinate_type<BoxOut>::type coordinate_type;
  36. static inline void apply(BoxIn const& box_in, T const& distance, BoxOut& box_out)
  37. {
  38. coordinate_type d = distance;
  39. set<C, D>(box_out, get<C, D>(box_in) + d);
  40. box_loop<BoxIn, BoxOut, T, C, D + 1, N>::apply(box_in, distance, box_out);
  41. }
  42. };
  43. template <typename BoxIn, typename BoxOut, typename T, std::size_t C, std::size_t N>
  44. struct box_loop<BoxIn, BoxOut, T, C, N, N>
  45. {
  46. static inline void apply(BoxIn const&, T const&, BoxOut&) {}
  47. };
  48. // Extends a box with the same amount in all directions
  49. template<typename BoxIn, typename BoxOut, typename T>
  50. inline void buffer_box(BoxIn const& box_in, T const& distance, BoxOut& box_out)
  51. {
  52. assert_dimension_equal<BoxIn, BoxOut>();
  53. static const std::size_t N = dimension<BoxIn>::value;
  54. box_loop<BoxIn, BoxOut, T, min_corner, 0, N>::apply(box_in, -distance, box_out);
  55. box_loop<BoxIn, BoxOut, T, max_corner, 0, N>::apply(box_in, distance, box_out);
  56. }
  57. }} // namespace detail::buffer
  58. #endif // DOXYGEN_NO_DETAIL
  59. #ifndef DOXYGEN_NO_DISPATCH
  60. namespace dispatch
  61. {
  62. template
  63. <
  64. typename Input,
  65. typename Output,
  66. typename TagIn = typename tag<Input>::type,
  67. typename TagOut = typename tag<Output>::type
  68. >
  69. struct buffer: not_implemented<TagIn, TagOut>
  70. {};
  71. template <typename BoxIn, typename BoxOut>
  72. struct buffer<BoxIn, BoxOut, box_tag, box_tag>
  73. {
  74. template <typename Distance>
  75. static inline void apply(BoxIn const& box_in, Distance const& distance,
  76. Distance const& , BoxOut& box_out)
  77. {
  78. detail::buffer::buffer_box(box_in, distance, box_out);
  79. }
  80. };
  81. } // namespace dispatch
  82. #endif // DOXYGEN_NO_DISPATCH
  83. namespace resolve_variant {
  84. template <typename Geometry>
  85. struct buffer
  86. {
  87. template <typename Distance, typename GeometryOut>
  88. static inline void apply(Geometry const& geometry,
  89. Distance const& distance,
  90. Distance const& chord_length,
  91. GeometryOut& out)
  92. {
  93. dispatch::buffer<Geometry, GeometryOut>::apply(geometry, distance, chord_length, out);
  94. }
  95. };
  96. template <BOOST_VARIANT_ENUM_PARAMS(typename T)>
  97. struct buffer<boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> >
  98. {
  99. template <typename Distance, typename GeometryOut>
  100. struct visitor: boost::static_visitor<void>
  101. {
  102. Distance const& m_distance;
  103. Distance const& m_chord_length;
  104. GeometryOut& m_out;
  105. visitor(Distance const& distance,
  106. Distance const& chord_length,
  107. GeometryOut& out)
  108. : m_distance(distance),
  109. m_chord_length(chord_length),
  110. m_out(out)
  111. {}
  112. template <typename Geometry>
  113. void operator()(Geometry const& geometry) const
  114. {
  115. buffer<Geometry>::apply(geometry, m_distance, m_chord_length, m_out);
  116. }
  117. };
  118. template <typename Distance, typename GeometryOut>
  119. static inline void apply(
  120. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> const& geometry,
  121. Distance const& distance,
  122. Distance const& chord_length,
  123. GeometryOut& out
  124. )
  125. {
  126. boost::apply_visitor(visitor<Distance, GeometryOut>(distance, chord_length, out), geometry);
  127. }
  128. };
  129. } // namespace resolve_variant
  130. /*!
  131. \brief \brief_calc{buffer}
  132. \ingroup buffer
  133. \details \details_calc{buffer, \det_buffer}.
  134. \tparam Input \tparam_geometry
  135. \tparam Output \tparam_geometry
  136. \tparam Distance \tparam_numeric
  137. \param geometry_in \param_geometry
  138. \param geometry_out \param_geometry
  139. \param distance The distance to be used for the buffer
  140. \param chord_length (optional) The length of the chord's in the generated arcs around points or bends
  141. \qbk{[include reference/algorithms/buffer.qbk]}
  142. */
  143. template <typename Input, typename Output, typename Distance>
  144. inline void buffer(Input const& geometry_in, Output& geometry_out,
  145. Distance const& distance, Distance const& chord_length = -1)
  146. {
  147. concept::check<Input const>();
  148. concept::check<Output>();
  149. resolve_variant::buffer<Input>::apply(geometry_in, distance, chord_length, geometry_out);
  150. }
  151. /*!
  152. \brief \brief_calc{buffer}
  153. \ingroup buffer
  154. \details \details_calc{return_buffer, \det_buffer}. \details_return{buffer}.
  155. \tparam Input \tparam_geometry
  156. \tparam Output \tparam_geometry
  157. \tparam Distance \tparam_numeric
  158. \param geometry \param_geometry
  159. \param distance The distance to be used for the buffer
  160. \param chord_length (optional) The length of the chord's in the generated arcs
  161. around points or bends (RESERVED, NOT YET USED)
  162. \return \return_calc{buffer}
  163. */
  164. template <typename Output, typename Input, typename Distance>
  165. Output return_buffer(Input const& geometry, Distance const& distance, Distance const& chord_length = -1)
  166. {
  167. concept::check<Input const>();
  168. concept::check<Output>();
  169. Output geometry_out;
  170. resolve_variant::buffer<Input>::apply(geometry, distance, chord_length, geometry_out);
  171. return geometry_out;
  172. }
  173. /*!
  174. \brief \brief_calc{buffer}
  175. \ingroup buffer
  176. \details \details_calc{buffer, \det_buffer}.
  177. \tparam GeometryIn \tparam_geometry
  178. \tparam MultiPolygon \tparam_geometry{MultiPolygon}
  179. \tparam DistanceStrategy A strategy defining distance (or radius)
  180. \tparam SideStrategy A strategy defining creation along sides
  181. \tparam JoinStrategy A strategy defining creation around convex corners
  182. \tparam EndStrategy A strategy defining creation at linestring ends
  183. \tparam PointStrategy A strategy defining creation around points
  184. \param geometry_in \param_geometry
  185. \param geometry_out output multi polygon (or std:: collection of polygons),
  186. will contain a buffered version of the input geometry
  187. \param distance_strategy The distance strategy to be used
  188. \param side_strategy The side strategy to be used
  189. \param join_strategy The join strategy to be used
  190. \param end_strategy The end strategy to be used
  191. \param point_strategy The point strategy to be used
  192. \qbk{distinguish,with strategies}
  193. \qbk{[include reference/algorithms/buffer_with_strategies.qbk]}
  194. */
  195. template
  196. <
  197. typename GeometryIn,
  198. typename MultiPolygon,
  199. typename DistanceStrategy,
  200. typename SideStrategy,
  201. typename JoinStrategy,
  202. typename EndStrategy,
  203. typename PointStrategy
  204. >
  205. inline void buffer(GeometryIn const& geometry_in,
  206. MultiPolygon& geometry_out,
  207. DistanceStrategy const& distance_strategy,
  208. SideStrategy const& side_strategy,
  209. JoinStrategy const& join_strategy,
  210. EndStrategy const& end_strategy,
  211. PointStrategy const& point_strategy)
  212. {
  213. typedef typename boost::range_value<MultiPolygon>::type polygon_type;
  214. concept::check<GeometryIn const>();
  215. concept::check<polygon_type>();
  216. typedef typename point_type<GeometryIn>::type point_type;
  217. typedef typename rescale_policy_type<point_type>::type rescale_policy_type;
  218. geometry_out.clear();
  219. if (geometry::is_empty(geometry_in))
  220. {
  221. // Then output geometry is kept empty as well
  222. return;
  223. }
  224. model::box<point_type> box;
  225. geometry::envelope(geometry_in, box);
  226. geometry::buffer(box, box, distance_strategy.max_distance(join_strategy, end_strategy));
  227. rescale_policy_type rescale_policy
  228. = boost::geometry::get_rescale_policy<rescale_policy_type>(box);
  229. detail::buffer::buffer_inserter<polygon_type>(geometry_in, range::back_inserter(geometry_out),
  230. distance_strategy,
  231. side_strategy,
  232. join_strategy,
  233. end_strategy,
  234. point_strategy,
  235. rescale_policy);
  236. }
  237. }} // namespace boost::geometry
  238. #endif // BOOST_GEOMETRY_ALGORITHMS_BUFFER_HPP