LTDescr.easeInCubic C# (CSharp) Method

easeInCubic() private method

private easeInCubic ( ) : Vector3
return Vector3
    private Vector3 easeInCubic()
    {
        val = this.ratioPassed * this.ratioPassed * this.ratioPassed;
        return new Vector3(this.diff.x * val + this.from.x, this.diff.y * val + this.from.y, this.diff.z * val + this.from.z);
    }
LTDescr