Quadratic Out
double EaseQuadOut(num t, num b, num c, num d) { t /= d; return (-c*t*(t - 2.0) + b); }