iTween.easeOutCirc C# (CSharp) Method

easeOutCirc() private method

private easeOutCirc ( float start, float end, float value ) : float
start float
end float
value float
return float
    private float easeOutCirc(float start, float end, float value)
    {
        value--;
        end -= start;
        return end * Mathf.Sqrt(1 - value * value) + start;
    }
iTween