pub trait Cross<RHS = Self> {
type Output;
// Required method
fn cross(self, other: RHS) -> Self::Output;
}
Expand description
The vector cross product.
pub trait Cross<RHS = Self> {
type Output;
// Required method
fn cross(self, other: RHS) -> Self::Output;
}
The vector cross product.