From 03b708f93191331a4152d586ebc3b193016f550e Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Sun, 18 Aug 2024 09:53:24 -0700 Subject: [PATCH] InOutQuintic fix --- src/easings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/easings.rs b/src/easings.rs index 0e34037..52a1a29 100644 --- a/src/easings.rs +++ b/src/easings.rs @@ -255,7 +255,7 @@ declare_easing_functions!( "in and out using a quintic (x^5) curve", |percent| { if percent < 0.5 { - 8. * quinted(percent) + 16. * quinted(percent) } else { 1. - quinted(-2. * percent + 2.) / 2. }