lerp static method

Vector4 lerp(
  1. Vector4 a,
  2. Vector4 b,
  3. double t
)

Implementation

static Vector4 lerp(Vector4 a, Vector4 b, double t) {
  return a + (b - a).scaled(t);
}