High-performance trigonometric function library optimized for Saturn hardware.
The Trigonometry class provides a comprehensive set of trigonometric and hyperbolic functions essential for 3D graphics, physics simulations, and signal processing. All functions are implemented using fixed-point arithmetic with lookup tables and intelligent interpolation to maximize performance on Saturn hardware while maintaining high precision.
Key features:
Performance characteristics:
Common applications:
Implementation details:
Precision considerations:
#include <trigonometry.hpp>
Static Public Member Functions | |
Basic Trigonometric Functions | |
Core trigonometric operations using fixed-point arithmetic. | |
static constexpr Fxp | Sin (const Angle &angle) |
Calculates sine of an angle. | |
static constexpr Fxp | Cos (const Angle &angle) |
Calculates cosine of an angle. | |
static constexpr Fxp | Tan (const Angle &angle) |
Calculates tangent of an angle. | |
template<typename T = void> | |
static constexpr Angle | Asin (const Fxp &value) |
Calculates arcsine (inverse sine) of a value. | |
template<typename T = void> | |
static constexpr Angle | Acos (const Fxp &value) |
Calculates arccosine (inverse cosine) of a value. | |
static constexpr Angle | Atan2 (const Fxp &y, const Fxp &x) |
Calculates arctangent of y/x, handling all quadrants correctly. | |
template<typename T = void> | |
static constexpr Fxp | Sinh (const Fxp &value) |
Calculates hyperbolic sine of a value. | |
template<typename T = void> | |
static constexpr Fxp | Cosh (const Fxp &value) |
Calculates hyperbolic cosine of a value. | |
template<typename T = void> | |
static constexpr Fxp | Tanh (const Fxp &value) |
Calculates hyperbolic tangent of a value. | |
static constexpr Angle | SLerp (const Angle &start, const Angle &end, const Fxp &t) |
Spherical linear interpolation between two angles. | |