Changed circle size 2

This commit is contained in:
Logan 2024-09-04 21:54:29 -05:00
parent 07cfb148fc
commit dab12b9b44

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 = 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)?