Vec2:lerp
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.
v = Vec2:lerp(u, t)
Arguments
Name | Type | Description |
u | Vec2 | The vector to lerp towards.
|
t | number | The lerping parameter.
|
Returns
Name | Type | Description |
v | Vec2 | The original vector, containing the new lerped values.
|
See also