lerpUnclamped
Performs an unclamped linear interpolation between two 4D vectors a and b by an interpolant/extrapolant t.
When
t = 0.0, this function returnsa.When
t = 1.0, this function returnsb.When
0.0 < t < 1.0, the return value is a point on the line segment strictly betweenaandb.When
t < 0.0ort > 1.0, the return value is a point on the infinite line defined byaandb, extrapolated beyond the segment[a, b].
The calculation is a + (b - a) * t.
Return
The interpolated or extrapolated Vector4.