DVUI

outCubic

curve

Parameters

#
t:f32
f32

Source

Implementation

#
pub fn outCubic(t: f32) f32 {
    return 1 - inCubic(1 - t);
}