/Src/Dependencies/Boost/libs/geometry/doc/reference/algorithms/append.qbk

http://hadesmem.googlecode.com/ · text · 33 lines · 27 code · 6 blank · 0 comment · 0 complexity · 36004a36824c6cfaea153b8aec692605 MD5 · raw file

  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2009-2011 Barend Gehrels, Amsterdam, the Netherlands.
  4. Copyright (c) 2009-2011 Mateusz Loskot, London, UK.
  5. Copyright (c) 2009-2011 Bruno Lalande, Paris, France.
  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. [heading Behavior]
  11. [table
  12. [[Case] [Behavior] ]
  13. [[__point__, __box__, __segment__][Compiles, but no action]]
  14. [[__linestring__][Appends point or range to the end of the linestring]]
  15. [[__ring__][Appends point or range to the end of the ring (without explicitly closing it)]]
  16. [[__polygon__][Appends point or range to the end of the polygon (without explicitly closing it),
  17. either the exterior ring (the default) or specify a zero-based index for one of the interior rings.
  18. In the last case, the interior rings are not resized automatically,
  19. so ensure that the zero-based index is smaller than the number of interior rings]]
  20. ]
  21. [heading Complexity]
  22. Linear
  23. [heading Example]
  24. [append]
  25. [append_output]
  26. [heading See also]
  27. * [link geometry.reference.algorithms.assign.assign_points assign]