Vector2DotProduct function

  1. @Deprecated('Use v1.dot(v2) instead')
double Vector2DotProduct(
  1. Vector2 v1,
  2. Vector2 v2
)

Implementation

@Deprecated('Use v1.dot(v2) instead')
double Vector2DotProduct(Vector2 v1, Vector2 v2) => v1.dot(v2);