Vector3Lerp method

Vector3D Vector3Lerp(
  1. Vector3D v1,
  2. Vector3D v2,
  3. double amount
)

Implementation

Vector3D Vector3Lerp(Vector3D v1, Vector3D v2, double amount)
  => v1.lerp(v2, amount);