Vector2Lerp method

Vector2D Vector2Lerp(
  1. Vector2D v1,
  2. Vector2D v2,
  3. double amount
)

Implementation

Vector2D Vector2Lerp(Vector2D v1, Vector2D v2, double amount)
  => v1.lerp(v2, amount);