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

◆ CubicEaseOut()

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

Cubic ease-out interpolation for stronger deceleration.

Implements cubic easing using the formula: (t - 1)³ + 1

The easing produces this motion:

  • Maximum velocity at start
  • Rapid deceleration
  • Very slow end

Common uses:

  • Dramatic exits
  • Impact effects
  • Explosion end
  • Heavy object stopping
Parameters
startStarting value of the interpolation
endEnding value of the interpolation
tInterpolation factor in range [0,1]
Returns
Eased value
Note
More pronounced than quadratic EaseOut