Remove System.Drawing namespace in MathUtils.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user