forked from M-Labs/nalgebra
13 lines
272 B
Rust
13 lines
272 B
Rust
|
use na::{Real, U3};
|
||
|
|
||
|
use aliases::{Vec, Qua};
|
||
|
|
||
|
pub fn angle<N: Real>(x: &Qua<N>) -> N {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
pub fn angleAxis<N: Real>(angle: N, axis: &Vec<N, U3>) -> Qua<N> {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
pub fn axis<N: Real>(x: &Qua<N>) -> Vec<N, U3> {
|
||
|
unimplemented!()
|
||
|
}
|