-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSize.html
More file actions
38 lines (26 loc) · 789 Bytes
/
Copy pathSize.html
File metadata and controls
38 lines (26 loc) · 789 Bytes
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
<html><head>
<title></title>
</head><body>
<div class="definition">
<h1>Size</h1>
<h2>Syntax</h2>
<div class="row">
<pre>Size(width, height)
</pre>
</div>
<h2>Description</h2>
<div class="row">
<p>A pair of width & height values wrapped into a single object. <i>Size</i> objects are very similar to <i>Point</i>s and arithmetic between the two types is supported.</p>
</div>
<h2>Properties</h2>
<div class="row">
<pre class="manual">
s.<span class="red">width</span>
s.<span class="red">height</span>
s.<span class="red">w</span>, s.<span class="red">h</span> <span class="c"># shorthand aliases</span>
</pre>
</div>
<h2>Tutorial</h2>
<p><a href="../tut/Geometry.html">Geometry</a></p>
</div>
</body></html>