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