Microsoft.Xna.Framework.ITweenExt.GetValue C# (CSharp) Method

GetValue() public static method

public static GetValue ( this c, Vector2 a, Vector2 b, float t ) : Vector2
c this
a Vector2
b Vector2
t float
return Vector2
        public static Vector2 GetValue(this ITween c, Vector2 a, Vector2 b, float t)
        {
            return new Vector2(
                c.GetValue(a.X, b.X, t),
                c.GetValue(a.Y, b.Y, t)
                );
        }

Same methods

ITweenExt::GetValue ( this c, Vector3 a, Vector3 b, float t ) : Vector3
ITweenExt::GetValue ( this c, Vector4 a, Vector4 b, float t ) : Vector4
ITweenExt