reverse.qbk 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2009-2012 Barend Gehrels, Amsterdam, the Netherlands.
  4. Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
  5. Copyright (c) 2009-2012 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. [def __this_function__ reverse]
  11. [heading_conformance_no_ogc __this_function__]
  12. [conformance_std __this_function__..std::__this_function__ function]
  13. [heading Behavior]
  14. [table
  15. [[Case] [Behavior] ]
  16. [[__point__][__does_nothing__]]
  17. [[__segment__][__nyiversion__]]
  18. [[__box__][__does_nothing__]]
  19. [[__linestring__][Reverses the __linestring__]]
  20. [[__ring__][Reverses the __ring__]]
  21. [[__polygon__][Reverses the exterior ring and all interior rings in the polygon]]
  22. [[__multi_point__][__does_nothing__]]
  23. [[__multi_linestring__][Reverses all contained linestrings individually]]
  24. [[__multi_polygon__][Reverses all contained polygons individually]]
  25. ]
  26. [note The reverse of a (multi)polygon or ring might make a valid geometry invalid because the (counter)clockwise orientation reverses.]
  27. [heading Complexity]
  28. Linear
  29. [heading Example]
  30. [reverse]
  31. [reverse_output]