nalgebra/src/traits/rotation.rs
2013-05-19 11:44:27 +00:00

7 lines
116 B
Rust

pub trait Rotation<V>
{
fn rotation(&self) -> V;
fn rotated(&self, &V) -> Self;
fn rotate(&mut self, &V);
}