LTDescr.easeInCubic C# (CSharp) Méthode

easeInCubic() private méthode

private easeInCubic ( ) : Vector3
Résultat 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