SaturnRingLibrary 0.9
SGL wrapper
 
Loading...
Searching...
No Matches

◆ Clamp()

static constexpr Fxp SRL::Math::Interpolation::Clamp ( const Fxp & value,
const Fxp & min,
const Fxp & max )
inlinestaticconstexpr

Clamps a value between minimum and maximum bounds.

Ensures a value stays within specified bounds using the formula: result = min(max(value, min), max)

Clamping behavior:

  • If value < min, returns min
  • If value > max, returns max
  • Otherwise, returns value unchanged

Common uses:

  • Constraining player movement
  • Limiting camera angles
  • Bounding UI element positions
  • Normalizing input values
Parameters
valueValue to be clamped
minMinimum allowed value
maxMaximum allowed value
Returns
Clamped value
Note
Assumes min <= max