Interface EasingFunction
- All Known Implementing Classes:
CubicBezierEasing
,Easing
,StepEasing
public interface EasingFunction
-
Method Summary
-
Method Details
-
get
default float get(float t, float start, float end) Applies this easing function to an input value between0f
and1f
and maps the output to a value betweenstart
andend
.- Parameters:
t
- Normalized input value (0f
to1f
)- Returns:
- The eased and remapped output value.
-
get
float get(float t) Applies this easing function to an input value between0f
and1f
. Values outside of this range may produce unpredictable results.- Parameters:
t
- Normalized input value (0f
to1f
)- Returns:
- The eased output value.
-