dot3 function

double dot3(
  1. Vector3 x,
  2. Vector3 y
)

3D dot product.

Implementation

double dot3(Vector3 x, Vector3 y) => x.dot(y);