initial commit
This commit is contained in:
6
node_modules/eases/cubic-out.js
generated
vendored
Normal file
6
node_modules/eases/cubic-out.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
function cubicOut(t) {
|
||||
var f = t - 1.0
|
||||
return f * f * f + 1.0
|
||||
}
|
||||
|
||||
module.exports = cubicOut
|
||||
Reference in New Issue
Block a user