Quadratic In
double EaseQuadIn(num t, num b, num c, num d) { t /= d; return (c*t*t + b).toDouble(); }