MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ ease_out()

template<typename T >
constexpr T MayaFlux::Kinesis::ease_out ( t)
constexprnoexcept

Cubic ease-out: fast start, slow end.

Parameters
tNormalized time in [0, 1].

Definition at line 211 of file Scalar.hpp.

212{
213 const T u = T { 1 } - t;
214 return T { 1 } - u * u * u;
215}