pub trait Cross<Rhs = Self> {
type Output;
// Required method
fn cross(self, rhs: Rhs) -> Self::Output;
}
Expand description
Perform the cross product of vectors
pub trait Cross<Rhs = Self> {
type Output;
// Required method
fn cross(self, rhs: Rhs) -> Self::Output;
}
Perform the cross product of vectors