summaryrefslogtreecommitdiff
path: root/html/en/func/polygon.html
blob: 3a0b9c052877287a516afc31802755cb82b56ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype HTML PUBLIC "-//IETF//DTD HTML//EN">
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Polygons</title>
<link rel="stylesheet" type="text/css" href="../../style.css">
</head>

<body>

<h2 align="center">Open, Closed and Filled Polygons,<br>
Bezier Lines and<br>
Regions Creation</h2>

  <p>The functions <font><strong>cdBegin</strong></font>,
  <font><strong>cdVertex</strong></font> and <font>
  <strong>cdEnd</strong></font> are use for many situations.
  <font><strong>cdBegin</strong></font> is called once,
  <font><strong>cdVertex</strong></font> can be called many 
  times, and <font><strong>cdEnd</strong></font> is called once 
  to actually do something. If you call <font><strong>cdBegin</strong></font> 
  again before <font><strong>cdEnd</strong></font> the process is 
  restarted, except for <strong><font>cdBegin(</font></strong><b>CD_REGION</b><strong><font>)</font></strong> 
  that can contains one or more polygons inside. </p>

<hr>
<pre class="function"><span class="mainFunction">void <a name="cdBegin">cdCanvasBegin</a>(cdCanvas* canvas, int mode); [in C]</span>

canvas:Begin(mode: number) [in Lua]</pre>

  <p>Starts defining a polygon to be drawn (or filled) according to the mode:&nbsp;
  <b>CD_CLOSED_LINES</b>, <b>CD_OPEN_LINES</b>, <b>CD_FILL</b><strong><b>,
  </b></strong><b>CD_CLIP, CD_REGION</b> or <strong><b>CD_BEZIER</b></strong>. 
  Do not create embedded polygons, that is, do not call function
  <font><strong>cdBegin</strong></font> twice without a call to
  <font><strong>cdEnd</strong></font> in between.</p>

<ul>
  <li><strong>CD_OPEN_LINES</strong><b>:</b> connects all the points at cdEnd. Depends 
  on line width and line style attributes. </li>
  <li><b><b>CD_CLOSED_LINES:</b> </b>connects all the points at cdEnd and 
  connects the last point to the first.&nbsp; Depends on line width and line 
  style attributes. </li>
  <li><b>CD_FILL:</b> connects the last point to the first and fills 
  the resulting polygon according to the current interior style. When the 
  interior style <strong><b>CD_HOLLOW</b></strong> is defined the it behaves 
  as if the mode were <b>CD_CLOSED_LINES</b><strong>.</strong></li>
  <li><b>CD_CLIP: i</b>nstead of creating a polygon to be drawn, 
  creates a polygon to define a polygonal clipping region. </li>
  <li><strong><b>CD_BEZIER:</b></strong><b> </b>defines the points of a bezier 
  curve. There must be at least 4 points: <i>start</i>, <i>control</i>, <i>
  control</i> and <i>end</i>. To specify a sequence of curves use 3 more points 
  for each curve: <i>control</i>, <i>control</i>, <i>end</i>, <i>control</i>, <i>
  control</i>, <i>end</i>, ... The end point is used as start point for the next 
  curve.</li>
  <li><strong><b>CD_REGION</b></strong>: starts the creation of a complex 
  region for clipping. All calls to <font><strong>cdBox</strong></font>,
  <font><strong>cdSector</strong></font>, <font>
  <strong>cdChord, Filled</strong></font> <font><strong>Polygons</strong></font> 
  and <font><strong>cdText</strong></font> will be composed in a 
  region for clipping. See <a href="region.html">Regions</a> documentation.</li>
	<li><strong>CD_PATH</strong>: creates a path composed of several primitives 
	that can be line draw, filled or used as clipping. Must call <strong>
	cdCanvasPathSet</strong> to configure the action between sequences of
	<strong>cdCanvasVertex</strong>.</li>
</ul>
<p align="center"><font size="4">Open, Closed and Filled Polygons<br>
</font><img src="../../img/polygon.gif" border="2" width="249" height="116"></p>
<p align="center"><font size="4">Bezier Lines<br>
</font><img src="../../img/bezier.gif" border="2" width="241" height="220"></p>
<pre class="function"><span class="mainFunction">void <a name="cdVertex">cdCanvasVertex</a>(cdCanvas* canvas, int x, int y); [in C]</span>
void cdfCanvasVertex(cdCanvas* canvas, double x, double y); [in C]
void wdCanvasVertex(cdCanvas* canvas, double x, double y); (WC) [in C]

canvas:Vertex(x, y: number) [in Lua]
canvas:wVertex(x, y: number) (WC) [in Lua]</pre>

  <p>Adds a vertex to the polygon definition.</p>

<pre class="function"><span class="mainFunction">void <a name="cdEnd">cdCanvasEnd</a>(cdCanvas* canvas); [in C]</span>

canvas:End() [in Lua]</pre>

  <p>Ends the polygon's definition and draws it.</p>


<pre class="function"><span class="mainFunction">void <a name="cdEnd0">cdCanvasPathSet</a>(cdCanvas* canvas, int action); [in C]</span>

canvas:PathSet(action: number) [in Lua]</pre>

  <p>Configures the action between sequences of <strong>cdCanvasVertex</strong>.
	<strong>action</strong> can be:</p>
<ul>
	<li>&nbsp;CD_PATH_NEW - creates a new empty path. Useful if more than one 
	path is configured. <strong>cdCanvasBegin</strong>(CD_PATH) already creates 
	a new path.</li>
	<li>CD_PATH_MOVETO - moves the current position to the given coordinates. 
	Must be followed by 1 call to <strong>cdCanvasVertex</strong>, <strong>
	cdfCanvasVertex</strong>, or <strong>wdCanvasVertex</strong>.</li>
	<li>CD_PATH_LINETO - adds a line to the path from the current position to 
	the given coordinates. The current position is updated to the&nbsp; given 
	coordinates. If there is no current position, nothing is connected and only 
	the current position is updated. Must be followed by 1 call to <strong>
	cdCanvasVertex</strong>, <strong>cdfCanvasVertex</strong>, or <strong>
	wdCanvasVertex</strong>.</li>
	<li>CD_PATH_ARC - adds an arc to the path. If there is a current position 
	adds also a line from the current position to the start of the arc. The end 
	of the arc becomes the current position. Must be followed by 3 calls to
	<strong>cdCanvasVertex</strong>, <strong>cdfCanvasVertex</strong>, or
	<strong>wdCanvasVertex</strong>. One for the center of the arc (xc,yc), one 
	for the bounding rectangle size (w,h), and one for the start and end angles 
	(angle1,angle2). Angles are in degrees. When using integer coordinates 
	angles must be multiplied by 1000.</li>
	<li>CD_PATH_CURVETO - adds a bezier curve to the path. If there is no 
	current position, the first point will be used twice. The end point becomes 
	the current position. Must be followed by 3 calls to <strong>cdCanvasVertex</strong>,
	<strong>cdfCanvasVertex</strong>, or <strong>wdCanvasVertex</strong>. Must 
	be first control point (x1,y1) + second control point (x2,y2) + end point 
	(x3,y3).</li>
	<li>CD_PATH_CLOSE - adds a line to the path that connects the last point 
	with the first point of the path, closing it.</li>
	<li>CD_PATH_FILL - fills the path with the current fill attributes, 
	then the path is discarded.</li>
	<li>CD_PATH_STROKE - strokes the path with the current line attributes, then the 
	path is discarded.</li>
	<li>CD_PATH_FILLSTROKE - fills the path with the current fill 
	attributes, strokes the path with the current line attributes, then the path 
	is discarded.</li>
	<li>CD_PATH_CLIP - use the path as a clipping area to be 
	intersected with the current clipping area, then the path is discarded.</li>
	</ul>
	

<p>So the normal path creation to draw a line will do:</p>
<pre>cdCanvasBegin(canvas, CD_PATH);
cdCanvasPathSet(canvas, CD_PATH_MOVETO);
cdCanvasVertex(canvas, x1, y1);
cdCanvasPathSet(canvas, CD_PATH_LINETO);
cdCanvasVertex(canvas, x2, y2);
cdCanvasPathSet(canvas, CD_PATH_STROKE);
cdCanvasEnd(canvas);</pre>
	

</body>

</html>