mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-16 22:16:08 +00:00
7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
|
|
function cubicInOut(t) {
|
||
|
|
return t < 0.5
|
||
|
|
? 4.0 * t * t * t
|
||
|
|
: 0.5 * Math.pow(2.0 * t - 2.0, 3.0) + 1.0
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = cubicInOut
|