mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-16 13:16:42 +00:00
9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
var bounceOut = require('./bounce-out')
|
|
|
|
function bounceInOut(t) {
|
|
return t < 0.5
|
|
? 0.5 * (1.0 - bounceOut(1.0 - t * 2.0))
|
|
: 0.5 * bounceOut(t * 2.0 - 1.0) + 0.5
|
|
}
|
|
|
|
module.exports = bounceInOut |