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

7 lines
126 B
JavaScript

var bounceOut = require('./bounce-out')
function bounceIn(t) {
return 1.0 - bounceOut(1.0 - t)
}
module.exports = bounceIn