Vector2.Lerp(Vector2,Vector2,Single) Method (Microsoft.DirectX)

Expand
This topic has not yet been rated - Rate this topic
Language: Visual BasicC#C++JScript(Show All)

Vector2.Lerp(Vector2,Vector2,Single) Method (Microsoft.DirectX)

Performs a linear interpolation between two 2-D vectors.

Definition

Visual BasicPublic Shared Function Lerp( _
    ByVal left As Vector2, _
    ByVal right As Vector2, _
    ByVal interpolater As Single _
) As Vector2
C#public static Vector2 Lerp(
    Vector2 left,
    Vector2 right,
    float interpolater
);
C++public:
static Vector2 Lerp(
    Vector2 left,
    Vector2 right,
    float interpolater
);
JScriptpublic static function Lerp(
    left : Vector2,
    right : Vector2,
    interpolater : float
) : Vector2;

Parameters

left Microsoft.DirectX.Vector2
Source Vector2 structure.
right Microsoft.DirectX.Vector2
Source Vector2 structure.
interpolater System.Single
Parameter that linearly interpolates between the vectors.

Return Value

Microsoft.DirectX.Vector2
A Vector2 structure that is the result of the linear interpolation.

Remarks

This method performs the linear interpolation based on the following formula.

left + interpolater(right - left).

Did you find this helpful?
(1500 characters remaining)