Vector2.LerpUnclamped

Declaration

public static Vector2 LerpUnclamped(Vector2 a, Vector2 b, float t);

Description

Linearly interpolates between vectors a and b by t.

When t = 0 returns a.
When t = 1 return b.
When t = 0.5 returns the midpoint of a and b.

Additional resources: Lerp.


Did you find this page useful? Please give it a rating: