Update EaseUtil.cs
This commit is contained in:
parent
ff545585d7
commit
4dff3a98bc
@ -131,9 +131,7 @@ public class EaseUtil
|
|||||||
double c1 = 1.70158;
|
double c1 = 1.70158;
|
||||||
double c2 = c1 * 1.525;
|
double c2 = c1 * 1.525;
|
||||||
|
|
||||||
return x < 0.5 ?
|
return x < 0.5 ? Math.Pow(2 * x, 2) * ((c2 + 1) * 2 * x - c2) / 2 : (Math.Pow(2 * x - 2, 2) * ((c2 + 1) * (x * 2 - 2) + c2) + 2) / 2;
|
||||||
Math.Pow(2 * x, 2) * ((c2 + 1) * 2 * x - c2) / 2 :
|
|
||||||
(Math.Pow(2 * x - 2, 2) * ((c2 + 1) * (x * 2 - 2) + c2) + 2) / 2;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static double EaseInElastic(float x)
|
public static double EaseInElastic(float x)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user