From dab12b9b447611055e13a9284009357f9996c824 Mon Sep 17 00:00:00 2001 From: Logan Date: Wed, 4 Sep 2024 21:54:29 -0500 Subject: [PATCH] Changed circle size 2 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 32f6948..252e60e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -86,7 +86,7 @@ pub async fn make_gif( draw: Arc>, ) -> Result, Error> { const STEP: usize = 30; - const RADIUS: f32 = 8.0; + const RADIUS: f32 = 10.0; let image = image::io::Reader::new(Cursor::new(input.to_vec().as_slice())) .with_guessed_format() .map_err(|_| Error::CantGuessFormat)?