densify.qbk 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2007-2013 Barend Gehrels, Amsterdam, the Netherlands.
  4. Copyright (c) 2008-2013 Bruno Lalande, Paris, France.
  5. Copyright (c) 2009-2013 Mateusz Loskot, London, UK.
  6. Use, modification and distribution is subject to the Boost Software License,
  7. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  8. http://www.boost.org/LICENSE_1_0.txt)
  9. =============================================================================/]
  10. [/ Generated by doxygen_xml2qbk 1.1.1, don't change, will be overwritten automatically]
  11. [/ Generated from doxy/doxygen_output/xml/group__densify.xml]
  12. [section:densify_4_with_strategy densify (with strategy)]
  13. '''<indexterm><primary>densify</primary></indexterm>'''
  14. Densify a geometry using a specified strategy.
  15. [heading Synopsis]
  16. ``template<typename Geometry, typename Distance, typename Strategy>
  17. void densify(Geometry const & geometry, Geometry & out, Distance const & max_distance,
  18. Strategy const & strategy)``
  19. [heading Parameters]
  20. [table
  21. [[Type] [Concept] [Name] [Description] ]
  22. [[Geometry const &] [Any type fulfilling a Geometry Concept ] [geometry] [Input geometry, to be densified ]]
  23. [[Geometry &] [Any type fulfilling a Geometry Concept ] [out] [Output geometry, densified version of the input geometry ]]
  24. [[Distance const &] [A numerical distance measure ] [max_distance] [Distance threshold (in units depending on strategy) ]]
  25. [[Strategy const &] [A type fulfilling a DensifyStrategy concept ] [strategy] [Densify strategy to be used for densification]]
  26. ]
  27. [heading Header]
  28. Either
  29. `#include <boost/geometry.hpp>`
  30. Or
  31. `#include <boost/geometry/algorithms/densify.hpp>`
  32. [include reference/algorithms/densify.qbk]
  33. [heading Available Strategies]
  34. * [link geometry.reference.strategies.strategy_densify_cartesian Cartesian]
  35. * [link geometry.reference.strategies.strategy_densify_spherical Spherical]
  36. * [link geometry.reference.strategies.strategy_densify_geographic Geographic]
  37. [heading Example]
  38. [densify_strategy]
  39. [densify_strategy_output]
  40. [heading See also]
  41. * [link geometry.reference.algorithms.line_interpolate line_interpolate]
  42. [endsect]
  43. [section:densify_3 densify]
  44. '''<indexterm><primary>densify</primary></indexterm>'''
  45. Densify a geometry.
  46. [heading Synopsis]
  47. ``template<typename Geometry, typename Distance>
  48. void densify(Geometry const & geometry, Geometry & out, Distance const & max_distance)``
  49. [heading Parameters]
  50. [table
  51. [[Type] [Concept] [Name] [Description] ]
  52. [[Geometry const &] [Any type fulfilling a Geometry Concept ] [geometry] [Input geometry, to be densified ]]
  53. [[Geometry &] [Any type fulfilling a Geometry Concept ] [out] [Output geometry, densified version of the input geometry ]]
  54. [[Distance const &] [A numerical distance measure ] [max_distance] [Distance threshold (in units depending on coordinate system)]]
  55. ]
  56. [heading Header]
  57. Either
  58. `#include <boost/geometry.hpp>`
  59. Or
  60. `#include <boost/geometry/algorithms/densify.hpp>`
  61. [include reference/algorithms/densify.qbk]
  62. [heading Example]
  63. [densify]
  64. [densify_output]
  65. [heading See also]
  66. * [link geometry.reference.algorithms.line_interpolate line_interpolate]
  67. [endsect]