SaturnRingLibrary 0.9
SGL wrapper
 
Loading...
Searching...
No Matches
SRL::Math Namespace Reference

Detailed Description

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

Namespaces

namespace  Types
 

Classes

class  Integer
 Integer-specific utility functions optimized for performance. More...
 
class  Interpolation
 High-performance interpolation and easing library optimized for Saturn hardware. More...
 
class  Random
 High-performance pseudo-random number generator optimized for Saturn hardware. More...
 
class  Trigonometry
 High-performance trigonometric function library optimized for Saturn hardware. More...
 

Enumerations

enum class  Precision { Accurate , Fast , Turbo , Default = Fast }
 Specifies the precision level for mathematical operations. More...
 
enum class  SortOrder { Ascending , Descending }
 Specifies the order for sorting operations. More...
 

Functions

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.