mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-16 14:36:44 +00:00
5 lines
105 B
JavaScript
5 lines
105 B
JavaScript
function expoOut(t) {
|
|
return t === 1.0 ? t : 1.0 - Math.pow(2.0, -10.0 * t)
|
|
}
|
|
|
|
module.exports = expoOut |