static num easeInExponential(num ratio) { if (ratio == 0.0) return 0.0; return pow(2.0, 10.0 * (ratio - 1.0)); }