• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[/============================================================================
2  Boost.Geometry (aka GGL, Generic Geometry Library)
3
4  Copyright (c) 2007-2013 Barend Gehrels, Amsterdam, the Netherlands.
5  Copyright (c) 2008-2013 Bruno Lalande, Paris, France.
6  Copyright (c) 2009-2013 Mateusz Loskot, London, UK.
7
8  Use, modification and distribution is subject to the Boost Software License,
9  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
10  http://www.boost.org/LICENSE_1_0.txt)
11=============================================================================/]
12
13
14[/ Generated by doxygen_xml2qbk 1.1.1, don't change, will be overwritten automatically]
15[/ Generated from doxy/doxygen_output/xml/classboost_1_1geometry_1_1model_1_1polygon.xml]
16[section:model_polygon model::polygon]
17
18'''<indexterm><primary>model</primary></indexterm><indexterm><primary>polygon</primary></indexterm>'''
19The polygon contains an outer ring and zero or more inner rings.
20
21[heading Model of]
22[link geometry.reference.concepts.concept_polygon Polygon Concept]
23
24[heading Synopsis]
25``template<typename Point, bool ClockWise, bool Closed, template< typename, typename > class PointList,
26         template< typename, typename > class RingList, template< typename > class PointAlloc, template< typename > class RingAlloc>
27class model::polygon
28{
29  // ...
30};
31``
32
33[heading Template parameter(s)]
34[table
35[[Parameter] [Default] [Description]]
36[[typename Point] [] [point type ]]
37[[bool ClockWise] [true] [true for clockwise direction, false for CounterClockWise direction ]]
38[[bool Closed] [true] [true for closed polygons (last point == first point), false open points ]]
39[[template< typename, typename > class PointList] [std::vector] [container type for points, for example std::vector, std::deque ]]
40[[template< typename, typename > class RingList] [std::vector] [container type for inner rings, for example std::vector, std::deque ]]
41[[template< typename > class PointAlloc] [std::allocator] [container-allocator-type, for the points ]]
42[[template< typename > class RingAlloc] [std::allocator] [container-allocator-type, for the rings ]]
43]
44
45[heading Constructor(s)]
46[table
47[[Function] [Description] [Parameters] ]
48[[``polygon()``
49
50] [Default constructor, creating an empty polygon. ] [
51
52]]
53[[``polygon(std::initializer_list< ring_type > l)``
54
55] [Constructor taking std::initializer_list, filling the polygon. ] [[* std::initializer_list< ring_type >]: ['l]:
56
57
58
59]]
60]
61
62[heading Member Function(s)]
63[table
64[[Function] [Description] [Parameters]  [Returns]]
65[[``ring_type const  & outer()``
66
67] [] [
68
69][
70
71]
72]
73[[``inner_container_type const  & inners()``
74
75] [] [
76
77][
78
79]
80]
81[[``ring_type & outer()``
82
83] [] [
84
85][
86
87]
88]
89[[``inner_container_type & inners()``
90
91] [] [
92
93][
94
95]
96]
97[[``void clear()``
98
99] [Utility method, clears outer and inner rings. ] [
100
101][
102
103]
104]
105]
106
107[heading Header]
108Either
109
110`#include <boost/geometry/geometries/geometries.hpp>`
111
112
113Or
114
115`#include <boost/geometry/geometries/polygon.hpp>`
116
117[include reference/geometries/polygon.qbk]
118
119[endsect]
120
121