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

◆ EaseOut()

static constexpr Fxp SRL::Math::Interpolation::EaseOut ( const Fxp & start,
const Fxp & end,
const Fxp & t )
inlinestaticconstexpr

Quadratic ease-out interpolation for decelerating motion.

Implements quadratic easing using the formula: -t * (t - 2)

The easing produces this motion:

  • Starts at full velocity
  • Continuously decelerates
  • Stops smoothly (zero velocity)

Common uses:

  • Character movement stop
  • UI element exit
  • Zoom-out effects
  • Landing animations
Parameters
startStarting value of the interpolation
endEnding value of the interpolation
tInterpolation factor in range [0,1]
Returns
Eased value
Note
For symmetric animation, pair with EaseIn