Performs linear interpolation on two vectors. Given vectors a and b and interpolation coefficient vector t, returns a + t * (b - a).
Operand vector.
Interpolation coefficients vector.
Optional
vector to hold result. If not passed in a new one is created.
the linear interpolated result.
Performs linear interpolation on two vectors. Given vectors a and b and interpolation coefficient vector t, returns a + t * (b - a).