SaturnMath++ library functions.
SaturnMath++ is a C++23 library dedicated to Sega Saturn hardware, offering essential mathematical operations tailored for fixed-point arithmetic and geometric calculations.
Project url: Here
|
template<typename ValueType > |
static constexpr ValueType | Abs (const ValueType &value) |
| Get absolute value.
|
|
template<typename T > |
static constexpr T | Clamp (const T &value, const T &min, const T &max) |
| Clamps a value between min and max bounds.
|
|
template<typename ValueType > |
static constexpr ValueType | Max (const ValueType &first, const ValueType &second) |
| Get maximum value of two values.
|
|
template<typename ValueType > |
static constexpr ValueType | Min (const ValueType &first, const ValueType &second) |
| Get minimum value of two values.
|
|