clear.qbk 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 __is_cleared__ is cleared]
  11. [def __this_function__ clear]
  12. [heading_conformance_no_ogc __this_function__]
  13. [conformance_std __this_function__..__this_function__() method]
  14. [include reference/status/clear_status.qbk]
  15. [heading Behavior]
  16. [table
  17. [[Case] [Behavior] ]
  18. [[__point__][__does_nothing__]]
  19. [[__segment__][__does_nothing__]]
  20. [[__box__][__does_nothing__]]
  21. [[__linestring__][__linestring__ __is_cleared__]]
  22. [[__ring__][__ring__ is cleared]]
  23. [[__polygon__][The exterior ring __is_cleared__ and all interior rings are removed]]
  24. [[__multi_point__][__multi_point__ __is_cleared__]]
  25. [[__multi_linestring__][__multi_linestring__ __is_cleared__]]
  26. [[__multi_polygon__][__multi_polygon__ __is_cleared__]]
  27. ]
  28. [heading Complexity]
  29. Constant
  30. [heading Example]
  31. [clear]
  32. [clear_output]