[src]

Trait nalgebra::na::Cross

pub trait Cross<V> {
    fn cross(&Self, other: &Self) -> V;
}

Trait of elements having a cross product.

Required Methods

fn cross(&Self, other: &Self) -> V

Computes the cross product between two elements (usually vectors).