animation/keyframe library
Classes
-
Keyframe<
T> - A single keyframe in an animation track.
Enums
- EasingFunction
- Easing functions for interpolation.
Functions
-
applyEasing(
double t, EasingFunction easing) → double - Applies easing to a normalized t (0-1).
-
lerpDouble(
double a, double b, double t) → double - Interpolates between two doubles.
-
lerpVector3(
Vector3 a, Vector3 b, double t) → Vector3 - Interpolates between two Vector3.
-
slerpQuaternion(
Quaternion a, Quaternion b, double t) → Quaternion - Spherical linear interpolation between two quaternions.