Changed circle size

This commit is contained in:
Logan 2024-09-04 21:53:26 -05:00
parent bb28723ef0
commit 07cfb148fc

View file

@ -86,7 +86,7 @@ pub async fn make_gif(
draw: Arc<Mutex<QuickDraw>>,
) -> Result<Vec<u8>, Error> {
const STEP: usize = 30;
const RADIUS: f32 = 7.0;
const RADIUS: f32 = 8.0;
let image = image::io::Reader::new(Cursor::new(input.to_vec().as_slice()))
.with_guessed_format()
.map_err(|_| Error::CantGuessFormat)?