DVUI

inExpo

curve

Parameters

#
t:f32
f32

Source

Implementation

#
pub fn inExpo(t: f32) f32 {
    return std.math.pow(f32, 2, 10 * (t - 1));
}