Vector3DotProduct function

  1. @Deprecated('Use v1.dot(v2) instead')
double Vector3DotProduct(
  1. Vector3 v1,
  2. Vector3 v2
)

Implementation

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