pub trait CrossProduct<T> { type Output; // Required method fn cross(self, other: T) -> Self::Output; }
Returns the cross product with another rank-1 tensor.