lerp method

Vector4 lerp(
  1. Vector4 other,
  2. double t
)

Implementation

Vector4 lerp(Vector4 other, double t) {
  return Vector4Utils.lerp(this, other, t);
}