Files
JiboSDK/node_modules/eases/bounce-in-out.js
2026-03-22 03:21:45 +02:00

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