nalgebra/src/traits/cross.rs

6 lines
145 B
Rust
Raw Normal View History

pub trait Cross<Result>
{
2013-05-17 05:59:41 +08:00
/// Computes the cross product between two elements (usually vectors).
fn cross(&self, other : &Self) -> Result;
}