From 3b9ab3acae25c741bc57d2f15bc79d7c60b61504 Mon Sep 17 00:00:00 2001 From: "0m.ax" Date: Sat, 19 Jul 2025 03:23:51 +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 3f99673..d3b2ec0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -188,7 +188,7 @@ impl Drawable for Circle { /// Helper method to draw the 8 symmetric points for a given (x, y) offset. fn draw_and_move(&mut self, display: &mut Display,tick:u32) { let hsv_color = color::Hsv { - h: ((tick/20)%360).try_into().unwrap(), + h: ((tick/200)%360).try_into().unwrap(), s: 1.0, v: 1.0, };