dotProduct method

double dotProduct(
  1. Vector3C o
)

Implementation

double dotProduct(Vector3C o) => x * o.x + y * o.y + z * o.z;