DVUI

outExpo

curve

Parameters

#
t:f32
f32

Source

Implementation

#
pub fn outExpo(t: f32) f32 {
    return 1 - inExpo(1 - t);
}