Const
All 28 RPE easing functions indexed from 0 (index 0 → easingType 1).
Each function maps a progress value x ∈ [0, 1] to an output in approximately [0, 1]. Some curves (Back, Elastic) temporarily exceed this range.
x ∈ [0, 1]
[0, 1]
You usually don't call these directly — use easing which handles sub-ranges and bezier overrides.
const f = EASINGS[7]; // CubicOut (easingType 8)f!(0.5); // ~0.875 Copy
const f = EASINGS[7]; // CubicOut (easingType 8)f!(0.5); // ~0.875
All 28 RPE easing functions indexed from 0 (index 0 → easingType 1).
Each function maps a progress value
x ∈ [0, 1]to an output in approximately[0, 1]. Some curves (Back, Elastic) temporarily exceed this range.You usually don't call these directly — use easing which handles sub-ranges and bezier overrides.