std_array.qbk 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
  4. Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
  5. Copyright (c) 2009-2012 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. [section:std_array C++11 Array Container]
  11. C++11 array containers are adapted to the Boost.Geometry point concept
  12. [heading Description]
  13. A C++11 std::array is (optionally) adapted to the Boost.Geometry
  14. point concept. It can therefore be used in all Boost.Geometry algorithms.
  15. A std::array can be the point type used by the models linestring, polygon, segment,
  16. box, and ring.
  17. [heading Model of]
  18. [link geometry.reference.concepts.concept_point Point Concept]
  19. [heading Header]
  20. `#include <boost/geometry/geometries/adapted/std_array.hpp>`
  21. __not_in_boost_geometry_hpp__
  22. [heading Example]
  23. [std_array]
  24. [std_array_output]
  25. [endsect]