Linear In Out
double EaseLinearInOut(num t, num b, num c, num d) => run( () => _debugLabel('EaseLinearInOut', t, b, c, d), () => c*t/d + b, );