This repository was archived by the owner on Jun 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (55 loc) · 1.75 KB
/
index.html
File metadata and controls
142 lines (55 loc) · 1.75 KB
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
---
layout: withcc
title: ellipse() | reference
---
<table cellpadding="0" cellspacing="0" border="0" class="ref-item">
<tr class="name-row">
<th scope="row">Name</th>
<td><h3>ellipse()</h3></td>
</tr>
<tr class="">
<th scope="row">Examples</th>
<td><div class="example"><img src="/reference/ellipse_.gif" alt="example pic" /><pre class="margin">ellipse(56, 46, 55, 55);</pre></div></td>
</tr>
<tr class="">
<th scope="row">Description</th>
<td>Draws an ellipse (oval) in the display window. An ellipse with an equal <b>width</b> and <b>height</b> is a circle. The first two parameters set the location, the third sets the width, and the fourth sets the height. The origin may be changed with the <b>ellipseMode()</b> function.</td>
</tr>
<tr class="">
<th scope="row">Syntax</th>
<td><pre>ellipse(<kbd>x</kbd>, <kbd>y</kbd>, <kbd>width</kbd>, <kbd>height</kbd>)</pre></td>
</tr>
<tr class="">
<th scope="row">Parameters</th>
<td><table cellpadding="0" cellspacing="0" border="0">
<tr class="">
<th scope="row">x</th>
<td>int or float: x-coordinate of the ellipse</td>
</tr>
<tr class="">
<th scope="row">y</th>
<td>int or float: y-coordinate of the ellipse</td>
</tr>
<tr class="">
<th scope="row">width</th>
<td>int or float: width of the ellipse</td>
</tr>
<tr class="">
<th scope="row">height</th>
<td>int or float: height of the ellipse</td>
</tr>
</table></td>
</tr>
<tr class="">
<th scope="row">Returns</th>
<td>None</td>
</tr>
<tr class="">
<th scope="row">Usage</th>
<td>Web & Application</td>
</tr>
<tr class="">
<th scope="row">Related</th>
<td><a href="/reference/ellipseMode_">ellipseMode()</a><br /></td>
</tr>
</table>