DVUI

outBack

curve

This function extents past 0 and 1 for values of t between 0 and 1

Parameters

#
t:f32
f32

Source

Implementation

#
pub fn outBack(t: f32) f32 {
    return 1 - inBack(1 - t);
}