This commit is contained in:
0m.ax 2025-07-20 02:45:04 +02:00
parent 65fca6a5b2
commit 6c65b78e6c

View file

@ -197,7 +197,7 @@ impl Drawable for Circle {
let rgb: color::Rgb = hsv_color.into();
let draw_y =*self.x.lock().unwrap();
let draw_x = *self.y.lock().unwrap();
let radius = (tick/30) % (1080/2);
let radius = (tick/30) % (300/2);
self.draw_circle(display,draw_y,draw_x,radius.try_into().unwrap(),rgb.r,rgb.g,rgb.b);
}
}