mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-15 21:16:24 +00:00
7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
function quarticInOut(t) {
|
|
return t < 0.5
|
|
? +8.0 * Math.pow(t, 4.0)
|
|
: -8.0 * Math.pow(t - 1.0, 4.0) + 1.0
|
|
}
|
|
|
|
module.exports = quarticInOut |