Files
JiboSDK/node_modules/eases/quart-out.js

5 lines
105 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
function quarticOut(t) {
return Math.pow(t - 1.0, 3.0) * (1.0 - t) + 1.0
}
module.exports = quarticOut