DVUI

inCirc

curve

Parameters

#
t:f32
f32

Source

Implementation

#
pub fn inCirc(t: f32) f32 {
    return -(std.math.sqrt(1 - t * t) - 1);
}