/Src/Dependencies/Boost/libs/polygon/doc/gtl_polygon_90_concept.htm

http://hadesmem.googlecode.com/ · HTML · 393 lines · 382 code · 7 blank · 4 comment · 0 complexity · a3f94646bd001ab8be0ef14cd10a35b8 MD5 · raw file

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:(null)1="http://www.w3.org/TR/REC-html40"><head><!--
  3. Copyright 2009-2010 Intel Corporation
  4. license banner
  5. -->
  6. <title>Boost Polygon Library: Polygon 90 Concept</title>
  7. <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
  8. <table style="margin: 0pt; padding: 0pt; width: 100%;" border="0" cellpadding="0" cellspacing="0"><tbody><tr>
  9. <td style="background-color: rgb(238, 238, 238);" nowrap="1" valign="top">
  10. <div style="padding: 5px;" align="center">
  11. <img border="0" src="images/boost.png" width="277" height="86"><a title="www.boost.org home page" href="http://www.boost.org/" tabindex="2" style="border: medium none ;">
  12. </a>
  13. </div>
  14. <div style="margin: 5px;">
  15. <h3 class="navbar">Contents</h3>
  16. <ul>
  17. <li><a href="index.htm">Boost.Polygon Main Page</a></li>
  18. <li><a href="gtl_design_overview.htm">Design Overview</a></li>
  19. <li><a href="gtl_isotropy.htm">Isotropy</a></li>
  20. <li><a href="gtl_coordinate_concept.htm">Coordinate Concept</a></li>
  21. <li><a href="gtl_interval_concept.htm">Interval Concept</a></li>
  22. <li><a href="gtl_point_concept.htm">Point Concept</a></li>
  23. <li><a href="gtl_rectangle_concept.htm">Rectangle Concept</a></li>
  24. <li>Polygon 90 Concept</li>
  25. <li><a href="gtl_polygon_90_with_holes_concept.htm">Polygon 90 With Holes Concept</a></li>
  26. <li><a href="gtl_polygon_45_concept.htm">Polygon 45 Concept</a></li>
  27. <li><a href="gtl_polygon_45_with_holes_concept.htm">Polygon 45 With Holes Concept</a></li>
  28. <li><a href="gtl_polygon_concept.htm">Polygon Concept</a></li>
  29. <li><a href="gtl_polygon_with_holes_concept.htm">Polygon With Holes Concept</a></li>
  30. <li><a href="gtl_polygon_90_set_concept.htm">Polygon 90 Set Concept</a></li>
  31. <li><a href="gtl_polygon_45_set_concept.htm">Polygon 45 Set Concept</a></li>
  32. <li><a href="gtl_polygon_set_concept.htm">Polygon Set Concept</a></li>
  33. <li><a href="gtl_connectivity_extraction_90.htm">Connectivity Extraction 90</a></li>
  34. <li><a href="gtl_connectivity_extraction_45.htm">Connectivity Extraction 45</a></li>
  35. <li><a href="gtl_connectivity_extraction.htm">Connectivity Extraction</a></li>
  36. <li><a href="gtl_property_merge_90.htm">Property Merge 90</a></li>
  37. <li><a href="gtl_property_merge_45.htm">Property Merge 45</a></li>
  38. <li><a href="gtl_property_merge.htm">Property Merge</a></li>
  39. </ul>
  40. <h3 class="navbar">Other Resources</h3>
  41. <ul>
  42. <li><a href="GTL_boostcon2009.pdf">GTL Boostcon 2009 Paper</a></li>
  43. <li><a href="GTL_boostcon_draft03.pdf">GTL Boostcon 2009
  44. Presentation</a></li>
  45. <li><a href="analysis.htm">Performance Analysis</a></li>
  46. <li><a href="gtl_tutorial.htm">Layout Versus Schematic Tutorial</a></li>
  47. <li><a href="gtl_minkowski_tutorial.htm">Minkowski Sum Tutorial</a></li>
  48. </ul>
  49. </div>
  50. <h3 class="navbar">Polygon Sponsor</h3>
  51. <div style="padding: 5px;" align="center">
  52. <img border="0" src="images/intlogo.gif" width="127" height="51">
  53. </div>
  54. </td>
  55. <td style="padding-left: 10px; padding-right: 10px; padding-bottom: 10px;" valign="top" width="100%">
  56. <!-- End Header -->
  57. <br>
  58. <p>
  59. </p><h1>Polygon 90 Concept</h1>
  60. <p>
  61. <p>The polygon_90 concept tag is <font face="Courier New">
  62. polygon_90_concept</font></p>
  63. <p>
  64. To register a user defined type as a model of
  65. <font face="Times New Roman">polygon_90 </font>concept, specialize the
  66. geometry concept meta-function for that type.&nbsp; In the example below CPolygon90 is registered as a model of
  67. polygon_90&nbsp; concept.<p>
  68. <font face="Courier New">template &lt;&gt;<br>
  69. struct geometry_concept&lt;CPolygon90&gt; { typedef polygon_90_concept type; };</font><p>
  70. <font face="Times New Roman">The semantic of a polygon_90 is that it can provide
  71. iterators over the x and y coordinates that correspond to its horizontal and
  72. vertical sides, starting with an x coordinate.&nbsp; A mutable polygon_90 must
  73. also be able to set its geometry based on an interator range over such
  74. coordinates.&nbsp; Since most polygons use vertex points in internal storage
  75. iterator adaptors for converting to and from point sequences are provided in
  76. iterator_points_to_compact.hpp and iterator_compact_to_points.hpp to aid in the
  77. specialization of polygon_90_traits.&nbsp; A std::vector&lt;int&gt; or std::list&lt;int&gt;
  78. could be made models of polygon_90_concept by simply providing access to their
  79. iterators through traits.&nbsp; Library functions that create polygon objects
  80. require that those objects provide a default constructor.</font><p>
  81. <font face="Times New Roman">Below is shown the default polygon traits.&nbsp;
  82. Specialization of these traits is required for types that don't conform to the
  83. default behavior.&nbsp; Note that these traits are also used by the
  84. polygon_90_with_holes concept.</font><p><font face="Courier New">template &lt;typename
  85. T&gt;<br>
  86. struct polygon_90_traits {<br>
  87. &nbsp;&nbsp;&nbsp;&nbsp; typedef typename T::coordinate_type coordinate_type;<br>
  88. &nbsp;&nbsp;&nbsp;&nbsp; typedef typename T::compact_iterator_type
  89. compact_iterator_type;<br>
  90. &nbsp;&nbsp;&nbsp;&nbsp; static inline compact_iterator_type begin_compact(const
  91. T&amp; t) {<br>
  92. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return t.begin_compact();<br>
  93. &nbsp;&nbsp;&nbsp;&nbsp; }<br>
  94. &nbsp;&nbsp;&nbsp;&nbsp; static inline compact_iterator_type end_compact(const
  95. T&amp; t) {<br>
  96. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return t.end_compact();<br>
  97. &nbsp;&nbsp;&nbsp;&nbsp; }<br>
  98. &nbsp;&nbsp;&nbsp;&nbsp; static inline unsigned int size(const T&amp; t) {<br>
  99. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return t.size();<br>
  100. &nbsp;&nbsp;&nbsp;&nbsp; }<br>
  101. &nbsp;&nbsp;&nbsp;&nbsp; static inline winding_direction winding(const T&amp; t) {<br>
  102. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return unknown_winding;<br>
  103. &nbsp;&nbsp;&nbsp;&nbsp; }<br>
  104. };</font></p>
  105. <p><font face="Courier New">template &lt;typename T&gt;<br>
  106. struct polygon_90_mutable_traits { <br>
  107. &nbsp;&nbsp;&nbsp;&nbsp; template &lt;typename iT&gt;<br>
  108. &nbsp;&nbsp;&nbsp;&nbsp; static inline T&amp; set_compact(T&amp; t, iT input_begin, iT
  109. input_end) {<br>
  110. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t.set_compact(input_begin,
  111. input_end);<br>
  112. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return t;<br>
  113. &nbsp;&nbsp;&nbsp;&nbsp; }</font><br>
  114. <font face="Courier New">};</font></p>
  115. <p>An object that is a model of <font face="Courier New">
  116. polygon_90_concept</font> can be viewed as a model of any of its
  117. refinements if it is determined at runtime to conform to the restriction of
  118. those concepts.&nbsp; This concept casting is accomplished through the
  119. <font face="Courier New">view_as&lt;&gt;()</font> function.</p>
  120. <p><font face="Courier New">view_as&lt;rectangle_concept&gt;(polygon_90_object)</font></p>
  121. <p>The return value of <font face="Courier New">view_as&lt;&gt;()</font> can be
  122. passed into any interface that expects an object of the conceptual type
  123. specified in its template parameter.</p>
  124. <h2>Functions</h2>
  125. <table border="1" width="100%" id="table1">
  126. <tr>
  127. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  128. compact_iterator_type <b>begin_compact</b>(const T&amp; polygon)</font></td>
  129. <td><font face="Times New Roman">Expects a model of polygon_90.&nbsp;
  130. Returns the begin iterator over the range of coordinates that correspond
  131. to horizontal and vertical edges.</font></td>
  132. </tr>
  133. <tr>
  134. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  135. compact_iterator_type <b>end_compact</b>(const T&amp; polygon)</font></td>
  136. <td><font face="Times New Roman">Expects a model of polygon_90.&nbsp;
  137. Returns the end iterator over the range of coordinates that correspond
  138. to horizontal and vertical edges.</font></td>
  139. </tr>
  140. <tr>
  141. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  142. point_iterator_type <b>begin_points</b>(const T&amp; polygon)</font></td>
  143. <td><font face="Times New Roman">Expects a model of polygon_90.&nbsp;
  144. Returns the begin iterator over the range of points that correspond to
  145. vertices of the polygon.</font></td>
  146. </tr>
  147. <tr>
  148. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  149. point_iterator_type <b>end_points</b>(const T&amp; polygon)</font></td>
  150. <td><font face="Times New Roman">Expects a model of polygon_90.&nbsp;
  151. Returns the end iterator over the range of points that correspond to
  152. vertices of the polygon.</font></td>
  153. </tr>
  154. <tr>
  155. <td width="586"><font face="Courier New">template &lt;typename T, typename
  156. iterator&gt;<br>
  157. void <b>set_compact</b>(T&amp; polygon, iterator b, iterator e)</font></td>
  158. <td><font face="Times New Roman">Expects a model of polygon_90.&nbsp;&nbsp;
  159. Sets the polygon to the coordinate data range [b,e) that corresponds to
  160. .horizontal and vertical edges.</font></td>
  161. </tr>
  162. <tr>
  163. <td width="586"><font face="Courier New">template &lt;typename T, typename
  164. iterator&gt;<br>
  165. void <b>set_points</b>(T&amp; polygon, iterator b, iterator e)</font></td>
  166. <td><font face="Times New Roman">Expects a model of polygon_90.&nbsp;&nbsp;
  167. Sets the polygon to the point data range [b,e) that corresponds to
  168. vertices of a manhattan polygon.&nbsp; Non-manhattan edges between
  169. successive input points results in undefined behavior.</font></td>
  170. </tr>
  171. <tr>
  172. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  173. unsigned int <b>size</b>(const T&amp; polygon)</font></td>
  174. <td><font face="Times New Roman">Returns the number of edges in the
  175. polygon.</font></td>
  176. </tr>
  177. <tr>
  178. <td width="586"><font face="Courier New">template &lt;typename T1, typename
  179. T2&gt;<br>
  180. T1&amp; <b>assign</b>(T1&amp; left, const T2&amp; right)</font></td>
  181. <td>Copies data from right object that models polygon_90 into left object
  182. that models polygon_90.</td>
  183. </tr>
  184. <tr>
  185. <td width="586"><font face="Courier New">template &lt;typename T,
  186. typename point_type&gt;<br>
  187. bool <b>contains</b>(const T&amp;, const point_type&amp; point, <br>
  188. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  189. bool consider_touch=true)</font></td>
  190. <td>Given an object that models polygon_90 and an object that models
  191. point, returns true
  192. if the polygon contains the point.&nbsp; If the consider_touch
  193. flag is true will return true if the point lies along the boundary of
  194. the polygon.&nbsp; Linear wrt. vertices.</td>
  195. </tr>
  196. <tr>
  197. <td width="586"><font face="Courier New">// get the center coordinate<br>
  198. template &lt;typename T, typename point_type&gt;<br>
  199. void <b>center</b>(point_type&amp; p, const T&amp; polygon)</font></td>
  200. <td>Sets object that models point to the center point of the bounding
  201. box of an object that models polygon_90.&nbsp; Linear wrt. vertices.</td>
  202. </tr>
  203. <tr>
  204. <td width="586"><font face="Courier New">template &lt;typename T,
  205. typename rectangle_type&gt;<br>
  206. bool <b>extents</b>(rectangle_type&amp; bbox, const T&amp; polygon)</font></td>
  207. <td>Sets object that models rectangle to the bounding box of an object
  208. that models polygon_90 and returns true.&nbsp; Returns false and leaves
  209. bbox unchanged if polygon is empty.&nbsp; Linear wrt. vertices.</td>
  210. </tr>
  211. <tr>
  212. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  213. manhattan_area_type <b>area</b>(const T&amp; polygon)</font></td>
  214. <td>Returns the area of an object
  215. that models polygon_90.&nbsp; Linear wrt. vertices.</td>
  216. </tr>
  217. <tr>
  218. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  219. direction_1d <b>winding</b>(const T&amp; polygon)</font></td>
  220. <td>Returns the winding direction of an object
  221. that models polygon_90, LOW == CLOCKWISE, HIGH = COUNTERCLOCKWISE.&nbsp;
  222. Complexity depends upon winding trait.</td>
  223. </tr>
  224. <tr>
  225. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  226. coordinate_difference <b>perimeter</b>(const T&amp; polygon)</font></td>
  227. <td>Returns the perimeter length of an object
  228. that models polygon_90.&nbsp; Linear wrt. vertices.</td>
  229. </tr>
  230. <tr>
  231. <td width="586"><font face="Courier New">template &lt;typename T,
  232. typename transform_type&gt;<br>
  233. T&amp; <b>transform</b>(T&amp; polygon, const transform_type&amp;)</font></td>
  234. <td>Applies transform() on the vertices of polygon and sets the polygon to that described by the result of
  235. transforming its vertices.&nbsp; Linear wrt. vertices.</td>
  236. </tr>
  237. <tr>
  238. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  239. T&amp; <b>scale_up</b>(T&amp; polygon, unsigned_area_type factor)</font></td>
  240. <td>Scales up coordinate of an object that models
  241. polygon_90 by unsigned factor.&nbsp; Linear wrt. vertices.</td>
  242. </tr>
  243. <tr>
  244. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  245. T&amp; <b>scale_down</b>(T&amp; polygon, unsigned_area_type factor)</font></td>
  246. <td>Scales down coordinates of an object that models
  247. polygon_90 by unsigned factor.&nbsp; Linear wrt. vertices.</td>
  248. </tr>
  249. <tr>
  250. <td width="586"><font face="Courier New">template &lt;typename T, scaling_type&gt;<br>
  251. T&amp; <b>scale</b>(T&amp; rectangle, double scaling) </font></td>
  252. <td>Scales coordinates of an object that models polygon_90 by floating
  253. point factor.&nbsp; Linear wrt. vertices.</td>
  254. </tr>
  255. <tr>
  256. <td width="586"><font face="Courier New">template &lt;typename T&gt;<br>
  257. T&amp; <b>move</b>(T&amp; polygon, orientation_2d,<br>
  258. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; coordinate_difference displacement)</font></td>
  259. <td>Adds displacement value to coordinate indicated by orientation_2d of
  260. vertices of an object that models polygon_90 .&nbsp; Linear wrt.
  261. vertices.</td>
  262. </tr>
  263. <tr>
  264. <td width="586"><font face="Courier New">template &lt;typename polygon_type, typename point_type&gt;<br>
  265. polygon_type&amp; <b>convolve</b>(polygon_type&amp; polygon,<br>
  266. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  267. const point_type&amp; point)</font></td>
  268. <td>Convolves coordinate values of point with vertices of an
  269. object that models polygon_90.&nbsp; Linear wrt. vertices.</td>
  270. </tr>
  271. </table>
  272. <h1>Polygon 90 Data</h1>
  273. <p>
  274. <p>The library provides a model of polygon 90 concept declared
  275. <font face="Courier New">
  276. template&lt;typename T&gt; polygon_90_data </font>where T is the coordinate type.</p>
  277. <p>This data type is used internally when a Manhattan polygon is needed and is
  278. available to the library user who finds it convenient to use a library polygon
  279. data type instead of providing their own.&nbsp; The data type is implemented to
  280. be convenient to use with the library traits.</p>
  281. <h2>Members</h2>
  282. <table border="1" width="100%" id="table2">
  283. <tr>
  284. <td width="586"><b><font face="Courier New">geometry_type</font></b></td>
  285. <td><font face="Times New Roman">polygon_90_concept</font></td>
  286. </tr>
  287. <tr>
  288. <td width="586"><b><font face="Courier New">coordinate_type</font></b></td>
  289. <td><font face="Times New Roman">T</font></td>
  290. </tr>
  291. <tr>
  292. <td width="586"><b><font face="Courier New">iterator_type</font></b></td>
  293. <td>Iterator over vertices point_data&lt;T&gt; vertices of polygon</td>
  294. </tr>
  295. <tr>
  296. <td width="586"><b><font face="Courier New">compact_iterator_type</font></b></td>
  297. <td><font face="Times New Roman">Iterator over non-redundant coordinates
  298. of the polygon, alternating x, y, x, y starting with an x, where each x
  299. corresponds to a vertical edge and each y corresponds to a horizontal
  300. edge.</font></td>
  301. </tr>
  302. <tr>
  303. <td width="586"><font face="Courier New"><b>polygon_90_data</b>()</font></td>
  304. <td><font face="Times New Roman">Default constructs the </font>polygon.</td>
  305. </tr>
  306. <tr>
  307. <td width="586"><font face="Courier New"><b>polygon_90_data</b>(const
  308. polygon_90_data&amp; that)</font></td>
  309. <td><font face="Times New Roman">Copy construct</font></td>
  310. </tr>
  311. <tr>
  312. <td width="586"><font face="Courier New">polygon_90_data&amp; <b>operator=</b>(const
  313. polygon_90_data&amp; that)</font></td>
  314. <td>Assignment operator.</td>
  315. </tr>
  316. <tr>
  317. <td width="586"><font face="Courier New">template &lt;typename T2&gt;<b>&nbsp;
  318. <br> </b>polygon_90_data&amp; <b>operator=</b>(const T2&amp; that) const</font></td>
  319. <td>Assign from an object that is a model of polygon 90.</td>
  320. </tr>
  321. <tr>
  322. <td width="586"><font face="Courier New">iterator_type <b>begin</b>()
  323. const</font></td>
  324. <td>Get the begin iterator over vertices of the polygon.</td>
  325. </tr>
  326. <tr>
  327. <td width="586"><font face="Courier New">iterator_type <b>end</b>()
  328. const</font></td>
  329. <td>Get the end iterator over vertices of the polygon.</td>
  330. </tr>
  331. <tr>
  332. <td width="586"><font face="Courier New">compact_iterator_type <b>
  333. begin_compact</b>() const</font></td>
  334. <td>Get the begin compact iterator over non-redundant coordinates of the
  335. polygon.</td>
  336. </tr>
  337. <tr>
  338. <td width="586"><font face="Courier New">compact_iterator_type <b>
  339. end_compact</b>() const</font></td>
  340. <td>Get the end compact iterator over non-redundant coordinates of the
  341. polygon.</td>
  342. </tr>
  343. <tr>
  344. <td width="586"><font face="Courier New">std::size_t <b>size</b>() const</font></td>
  345. <td>Get the number of elements in the sequence stored to the polygon,
  346. usually equal to the number of edges of the polygon.</td>
  347. </tr>
  348. <tr>
  349. <td width="586"><font face="Courier New">template &lt;typename iT&gt;<b>&nbsp;
  350. <br> </b>void <b>set</b>(iT begin_points, iT end_points)</font></td>
  351. <td>Sets the polygon to the iterator range of points.&nbsp; No check is
  352. performed to ensure the points describe a Manhattan figure, every other
  353. x and y value of the points is used to initialize the polygon.</td>
  354. </tr>
  355. <tr>
  356. <td width="586"><font face="Courier New">template &lt;typename iT&gt;<b>&nbsp;
  357. <br> </b>void <b>set_compact</b>(iT begin_coords, iT end_coords)</font></td>
  358. <td>Sets the polygon to the iterator range of coordinates.&nbsp; These
  359. coordinates correspond to the x values of vertical edges and y values of
  360. horizontal edges.&nbsp; It is expected that the sequence start with an x
  361. value and proceed x then y then x then y.</td>
  362. </tr>
  363. </table>
  364. <tr>
  365. <td style="background-color: rgb(238, 238, 238);" nowrap="1" valign="top">
  366. &nbsp;</td>
  367. <td style="padding-left: 10px; padding-right: 10px; padding-bottom: 10px;" valign="top" width="100%">
  368. <table class="docinfo" rules="none" frame="void" id="table3">
  369. <colgroup>
  370. <col class="docinfo-name"><col class="docinfo-content">
  371. </colgroup>
  372. <tbody vAlign="top">
  373. <tr>
  374. <th class="docinfo-name">Copyright:</th>
  375. <td>Copyright Š Intel Corporation 2008-2010.</td>
  376. </tr>
  377. <tr class="field">
  378. <th class="docinfo-name">License:</th>
  379. <td class="field-body">Distributed under the Boost Software License,
  380. Version 1.0. (See accompanying file <tt class="literal">
  381. <span class="pre">LICENSE_1_0.txt</span></tt> or copy at
  382. <a class="reference" target="_top" href="http://www.boost.org/LICENSE_1_0.txt">
  383. http://www.boost.org/LICENSE_1_0.txt</a>)</td>
  384. </tr>
  385. </table>
  386. </html>