Remove System.Drawing namespace in MathUtils.

This commit is contained in:
2024-01-21 18:17:58 +01:00
parent ff2246f74a
commit 6aa830b53d

View File

@@ -1,4 +1,3 @@
using System.Drawing;
using System.Numerics;
namespace DaggerFramework
@@ -43,7 +42,7 @@ namespace DaggerFramework
public static float EaseOutElastic(float x)
{
var c4 = (2f * (float)Math.PI) / 3f;
var c4 = 2f * (float)Math.PI / 3f;
return x == 0
? 0