From 16a1eb192384de6ec616490c179b6f4bf46e121a Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Tue, 3 Dec 2024 10:29:59 -0500 Subject: [PATCH] fix (#864) --- src/internal/animations/NeoEase.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/internal/animations/NeoEase.h b/src/internal/animations/NeoEase.h index 7c8e171..7f040cf 100644 --- a/src/internal/animations/NeoEase.h +++ b/src/internal/animations/NeoEase.h @@ -211,9 +211,8 @@ public: } else { - return (-0.5f * (cos(PI * (unitValue-0.5f)) + 1.0f)); + return (-0.5f * cos(PI * (unitValue - 0.5f)) + 1.0f); } - } static float ExponentialIn(float unitValue)