crossProduct method

Vector3D crossProduct(
  1. Vector3D o
)

Implementation

Vector3D crossProduct(Vector3D o) => .vec3(
  y*o.z - z*o.y,
  z*o.x - x*o.z,
  x*o.y - y*o.x
);