nalgebra/src/traits/inv.rs

6 lines
71 B
Rust
Raw Normal View History

2013-05-15 08:18:13 +08:00
pub trait Inv
2013-05-14 19:35:01 +08:00
{
fn inverse(&self) -> Self;
fn invert(&mut self);
2013-05-14 19:35:01 +08:00
}