Vec2:lerp

Edit

Performs a linear interpolation between this vector and another one, which can be used to smoothly animate between two vectors, based on a parameter value. A parameter value of 0 will leave the vector unchanged, a parameter value of 1 will set the vector to be equal to the input vector, and a value of .5 will set the components to be halfway between the two vectors.



Arguments

NameTypeDescription
uVec2 The vector to lerp towards.
tnumber The lerping parameter.

Returns

NameTypeDescription
selfVec2 The interpolated vector.

Arguments

NameTypeDescription
xnumber A value of x component to lerp towards.
ynumber A value of y component to lerp towards.
tnumber The lerping parameter.

Returns

NameTypeDescription
selfVec2 The interpolated vector.

See also