Microsoft.Xna.Framework.TweenQuartic.GetValue C# (CSharp) Méthode

GetValue() public méthode

public GetValue ( float a, float b, float t ) : float
a float
b float
t float
Résultat float
        public float GetValue(float a, float b, float t)
        {
            t *= t;
            t *= t;
            return t * b + (1 - t) * a;
        }
TweenQuartic