summaryrefslogtreecommitdiff
path: root/guide-src/widget-inputs.html
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-09-06 22:40:08 -0400
committerpommicket <pommicket@gmail.com>2023-09-06 22:40:08 -0400
commitc7b9db0d1bf3ae55c7e70207c636ced8606902ec (patch)
tree539995efe448a1eaa71ae3f11479c2b05c02cfb5 /guide-src/widget-inputs.html
parent6cb40e9bc8c5f15a0c5158fe2c65b507221e4b4d (diff)
add some more widgets, cleanup
Diffstat (limited to 'guide-src/widget-inputs.html')
-rw-r--r--guide-src/widget-inputs.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/guide-src/widget-inputs.html b/guide-src/widget-inputs.html
index f0e8bdb..048c75f 100644
--- a/guide-src/widget-inputs.html
+++ b/guide-src/widget-inputs.html
@@ -25,7 +25,7 @@ all of pugl's built-in values begin with a <code>.</code> to distinguish
them from your widgets.
here they all are.
below, <code>float</code> refers to a plain old number,
-<code>vec2</code> is a 2-component vector, etc.
+<code>vec2</code> is a 2D vector, etc.
<table>
<tbody>
@@ -37,5 +37,6 @@ below, <code>float</code> refers to a plain old number,
<tr><td><code>.mouse01</code></td><td><code>vec2</code><td>the position of the mouse ranging from (0, 0) to (+1, +1).</td></tr>
<tr><td><code>.pi</code></td><td><code>float</code><td>π (3.1415…).</td></tr>
<tr><td><code>.2pi</code></td><td><code>float</code><td>2π (6.2831…).</td></tr>
+<tr><td><code>.e</code></td><td><code>float</code><td>𝑒 (2.7182…).</td></tr>
</tbody>
</table>