dot method

double dot(
  1. UArVector3 other
)

Implementation

double dot(UArVector3 other) => x * other.x + y * other.y + z * other.z;