Cubic Out
double EaseCubicOut(num t, num b, num c, num d) { t = t/d - 1.0; return (c*(t*t*t + 1.0) + b); }