double EaseBackIn(num t, num b, num c, num d) { final s = 1.70158; final postFix = t/=d; return (c*(postFix)*t*((s + 1.0)*t - s) + b); }