| Parameter | Description |
|---|---|
| a | The first point to interpolate between. |
| b | The second point to interpolate between. |
| t | The amount to interpolate between. |
Vector4
When t is equal to 0, returns a. When t is equal to 1, returns b. When t is equal to 0.5, returns the midpoint of a and b.
Linearly interpolates between two vectors.
Interpolates between a and b by amount t.
When t = 0 returns a.
When t = 1 returns b.
When t = 0.5 returns the midpoint of a and b.
Additional resources: Lerp.