nalgebra/src/traits/cross.rs

5 lines
72 B
Rust
Raw Normal View History

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