From 2d9e9a1d3ffd7c183bc0f575da60a2052416410e Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Tue, 26 Sep 2023 21:01:19 +0800 Subject: [PATCH] ... --- src/easing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/easing.cpp b/src/easing.cpp index dddbeba7..b3d2547e 100644 --- a/src/easing.cpp +++ b/src/easing.cpp @@ -3,7 +3,7 @@ namespace pkpy{ // https://easings.net/ -static const double PI = 3.1415926545; +const double PI = 3.1415926545; static double easeLinear( double x ) { return x;