High-performance interpolation and easing library optimized for Saturn hardware.
The Interpolation class provides a comprehensive collection of interpolation and easing functions essential for smooth animations, camera movements, and procedural generation in games. All functions are implemented using fixed-point arithmetic to ensure consistent behavior across platforms and maximize performance on Saturn hardware.
Key features:
Common applications:
Performance considerations:
Implementation notes:
#include <interpolation.hpp>
Static Public Member Functions | |
static constexpr Fxp | BounceEaseIn (const Fxp &start, const Fxp &end, const Fxp &t) |
Bounce ease-in interpolation for reverse bouncing ball effect. | |
static constexpr Fxp | BounceEaseOut (const Fxp &start, const Fxp &end, const Fxp &t) |
Bounce ease-out interpolation for bouncing ball effect. | |
static constexpr Fxp | Clamp (const Fxp &value, const Fxp &min, const Fxp &max) |
Clamps a value between minimum and maximum bounds. | |
static constexpr Fxp | CubicEaseIn (const Fxp &start, const Fxp &end, const Fxp &t) |
Cubic ease-in interpolation for stronger acceleration. | |
static constexpr Fxp | CubicEaseOut (const Fxp &start, const Fxp &end, const Fxp &t) |
Cubic ease-out interpolation for stronger deceleration. | |
static constexpr Fxp | EaseIn (const Fxp &start, const Fxp &end, const Fxp &t) |
Quadratic ease-in interpolation for accelerating motion. | |
static constexpr Fxp | EaseOut (const Fxp &start, const Fxp &end, const Fxp &t) |
Quadratic ease-out interpolation for decelerating motion. | |
static constexpr Fxp | ElasticEaseIn (const Fxp &start, const Fxp &end, const Fxp &t) |
Elastic ease-in interpolation for spring-like motion. | |
static constexpr Fxp | Lerp (const Fxp &start, const Fxp &end, const Fxp &t) |
Linear interpolation between two fixed-point values. | |
static constexpr Fxp | Smoothstep (const Fxp &start, const Fxp &end, const Fxp &t) |
Smoothstep interpolation for smooth acceleration and deceleration. | |