initial commit
This commit is contained in:
6
node_modules/eases/quint-in-out.js
generated
vendored
Normal file
6
node_modules/eases/quint-in-out.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
function qinticInOut(t) {
|
||||
if ( ( t *= 2 ) < 1 ) return 0.5 * t * t * t * t * t
|
||||
return 0.5 * ( ( t -= 2 ) * t * t * t * t + 2 )
|
||||
}
|
||||
|
||||
module.exports = qinticInOut
|
||||
Reference in New Issue
Block a user