multi_point.qbk 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
  4. Copyright (c) 2009-2012 Barend Gehrels, Amsterdam, the Netherlands.
  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. [section:concept_multi_point MultiPoint Concept]
  11. [heading Description]
  12. [concept MultiPoint..multi point]
  13. [heading Concept Definition]
  14. The MultiPoint Concept is defined as following:
  15. * There must be a specialization of the metafunction `traits::tag`, defining `multi_point_tag` as type
  16. * It must behave like a Boost.Range Random Access Range
  17. * The type defined by the metafunction `range_value<...>::type` must fulfill the [link geometry.reference.concepts.concept_point Point Concept]
  18. [heading Available Models]
  19. * [link geometry.reference.models.model_multi_point model::multi_point]
  20. [endsect]