From 29261101e4cac2e8ebaa65bd03af76cbaf893da0 Mon Sep 17 00:00:00 2001 From: "0m.ax" Date: Sat, 19 Jul 2025 03:22:53 +0200 Subject: [PATCH] slow move --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 66ae2db..3f99673 100644 --- a/src/main.rs +++ b/src/main.rs @@ -194,7 +194,7 @@ impl Drawable for Circle { }; let rgb: color::Rgb = hsv_color.into(); - let radius = tick % (1080/2); + let radius = (tick/30) % (1080/2); self.draw_circle(display,self.x,self.y,radius.try_into().unwrap(),rgb.r,rgb.g,rgb.b); } }