Files
Zos/Skills/@be/node_modules/eases/bounce-in.js

7 lines
126 B
JavaScript

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