initial commit
This commit is contained in:
7
node_modules/eases/quart-in-out.js
generated
vendored
Normal file
7
node_modules/eases/quart-in-out.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
function quarticInOut(t) {
|
||||
return t < 0.5
|
||||
? +8.0 * Math.pow(t, 4.0)
|
||||
: -8.0 * Math.pow(t - 1.0, 4.0) + 1.0
|
||||
}
|
||||
|
||||
module.exports = quarticInOut
|
||||
Reference in New Issue
Block a user