7 lines
126 B
JavaScript
7 lines
126 B
JavaScript
var bounceOut = require('./bounce-out')
|
|
|
|
function bounceIn(t) {
|
|
return 1.0 - bounceOut(1.0 - t)
|
|
}
|
|
|
|
module.exports = bounceIn |