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

Description

在两个向量之间进行线性插值。

ab 之间按大小 t 进行插值。

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

另请参阅:Lerp