aboutsummaryrefslogtreecommitdiffstats
path: root/src/state.rs
diff options
context:
space:
mode:
authorbrian cully <bjc@spork.org>2025-12-27 18:48:17 -0500
committerbrian cully <bjc@spork.org>2025-12-27 18:48:17 -0500
commit88601f5114bd5038fc997580eeaa4cf1447f0511 (patch)
tree5c906b409517d21b3423faf40c74262b04e77f22 /src/state.rs
parentfdc957cae7f5efca792b40df7ff90ec4f512269b (diff)
downloadpolyring-88601f5114bd5038fc997580eeaa4cf1447f0511.tar.gz
polyring-88601f5114bd5038fc997580eeaa4cf1447f0511.zip
put 40 balls back in play
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.rs b/src/state.rs
index f5435f5..90c8147 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -10,7 +10,7 @@ use crate::point::Point;
pub const TAU: f64 = PI * 2.0;
pub const MAX_SPEED: f64 = 0.01;
-const NUM_POINTS: usize = 10;
+const NUM_POINTS: usize = 40;
const VELVEC_SCALE: f64 = 3.0;
#[derive(Debug)]