diff options
| author | Tim Redfern <redfernt@gmail.com> | 2023-08-18 16:12:50 +0100 |
|---|---|---|
| committer | Tim Redfern <redfernt@gmail.com> | 2023-08-18 16:12:50 +0100 |
| commit | 02aa1fbd6e4caf284917c4dcb0be9f3ee6eef776 (patch) | |
| tree | 149053d4afd5867e8dd3afd3500a126ddb489a74 | |
| parent | b3bfd6f78801f37162b989f89f3547b0b0ac1de1 (diff) | |
better range for granularity
| -rw-r--r-- | lasertext/src/ofApp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lasertext/src/ofApp.h b/lasertext/src/ofApp.h index a1f00a8..b7e0454 100644 --- a/lasertext/src/ofApp.h +++ b/lasertext/src/ofApp.h @@ -21,7 +21,7 @@ priorities 2023 parameters changing on a cycle ie life, speed - overall + overall rate 2. make the text display take an override sentence @@ -79,8 +79,8 @@ public: agevar=v; gui.setup(name,"",_gx,_gy); - gui.add(x.set("x", _x, -4000.0f, 4000.0f)); - gui.add(y.set("y", _y, -4000.0f, 4000.0f)); + gui.add(x.set("x", _x, -3000.0f, 3000.0f)); + gui.add(y.set("y", _y, -3000.0f, 3000.0f)); gui.add(rate.set("rate", r, 0.01f, 3.0f)); gui.add(radius.set("radius", _rad, 10.0f, 500.0f)); gui.add(speed.set("speed", s, 0.0f, 10.0f)); |
