Пример #1
0
 /// acceleration until halfway, then deceleration
 /// http://robertpenner.com/easing/
 public static float FunctionEaseInOutSine(float t) => (1 - FloatMath.Cos(FloatMath.PI * t)) / 2;