crossProduct method

Vector3C crossProduct(
  1. Vector3C o
)

Implementation

Vector3C crossProduct(Vector3C o) => set(
  y*o.z - z*o.y,
  z*o.x - x*o.z,
  x*o.y - y*o.x
);