nalgebra/src/traits/rotation.rs

7 lines
116 B
Rust
Raw Normal View History

2013-05-19 19:44:27 +08:00
pub trait Rotation<V>
{
fn rotation(&self) -> V;
fn rotated(&self, &V) -> Self;
fn rotate(&mut self, &V);
}