new Quartic() Quartic easing. Source code: tween/Easing.js (Line 141)
Out(k) → {number} Quartic ease-out. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 156)
InOut(k) → {number} Quartic ease-in/out. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 169)
In(k) → {number} Quartic ease-in. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 143)
new Quadratic() Quadratic easing. Source code: tween/Easing.js (Line 43)
Out(k) → {number} Ease-out. Parameters Name Type Description k number The value to be tweened. Returns number - k* (2-k). Source code: tween/Easing.js (Line 58)
InOut(k) → {number} Ease-in/out. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 71)
In(k) → {number} Ease-in. Parameters Name Type Description k number The value to be tweened. Returns number - k^2. Source code: tween/Easing.js (Line 45)
None(k) → {number} Linear Easing (no variation). Parameters Name Type Description k number The value to be tweened. Returns number - k. Source code: tween/Easing.js (Line 23)
new Linear() Linear easing. Source code: tween/Easing.js (Line 21)
Page 425 of 535