FairyGUI.ScrollPane.ThrowTween.easeOutCubic C# (CSharp) Method

easeOutCubic() static private method

static private easeOutCubic ( float t, float b, float c, float d ) : float
t float
b float
c float
d float
return float
            static float easeOutCubic(float t, float b, float c, float d)
            {
                return c * ((t = t / d - 1) * t * t + 1) + b;
            }