Vector4Lerp method

Vector4D Vector4Lerp(
  1. Vector4D v1,
  2. Vector4D v2,
  3. double amount
)

Implementation

Vector4D Vector4Lerp(Vector4D v1, Vector4D v2, double amount)
  => v1.lerp(v2, amount);