2013-05-20 18:02:02 +08:00
|
|
|
use core::num::{One, Zero};
|
2013-05-18 08:11:59 +08:00
|
|
|
use core::rand::{Rand, Rng, RngUtil};
|
2013-05-21 23:25:01 +08:00
|
|
|
use core::cmp::ApproxEq;
|
2013-05-17 05:30:39 +08:00
|
|
|
use traits::workarounds::rlmul::{RMul, LMul};
|
|
|
|
use traits::dim::Dim;
|
|
|
|
use traits::inv::Inv;
|
|
|
|
use traits::transpose::Transpose;
|
2013-05-19 19:44:27 +08:00
|
|
|
use traits::rotation::Rotation;
|
2013-05-20 03:45:30 +08:00
|
|
|
use traits::delta_transform::DeltaTransform;
|
2013-05-19 19:44:27 +08:00
|
|
|
use dim1::vec1::{Vec1, vec1};
|
2013-05-19 04:03:45 +08:00
|
|
|
use dim2::mat2::{Mat2, mat2};
|
|
|
|
use dim3::mat3::{Mat3, mat3};
|
|
|
|
use dim3::vec3::{Vec3};
|
2013-05-17 05:30:39 +08:00
|
|
|
|
|
|
|
#[deriving(Eq)]
|
|
|
|
pub struct Rotmat<M>
|
|
|
|
{
|
|
|
|
priv submat: M
|
|
|
|
}
|
|
|
|
|
2013-05-20 03:45:30 +08:00
|
|
|
impl<M: Copy> Rotmat<M>
|
|
|
|
{
|
|
|
|
fn submat(&self) -> M
|
|
|
|
{ self.submat }
|
|
|
|
}
|
|
|
|
|
2013-05-19 04:03:45 +08:00
|
|
|
pub fn rotmat2<T: Copy + Trigonometric + Neg<T>>(angle: T) -> Rotmat<Mat2<T>>
|
2013-05-17 05:30:39 +08:00
|
|
|
{
|
2013-05-20 18:02:02 +08:00
|
|
|
let coa = angle.cos();
|
|
|
|
let sia = angle.sin();
|
2013-05-17 05:30:39 +08:00
|
|
|
|
|
|
|
Rotmat
|
2013-05-19 04:03:45 +08:00
|
|
|
{ submat: mat2(coa, -sia, sia, coa) }
|
2013-05-17 05:30:39 +08:00
|
|
|
}
|
|
|
|
|
2013-05-19 04:03:45 +08:00
|
|
|
pub fn rotmat3<T: Copy + Trigonometric + Neg<T> + One + Sub<T, T> + Add<T, T> +
|
2013-05-17 05:30:39 +08:00
|
|
|
Mul<T, T>>
|
|
|
|
(axis: &Vec3<T>, angle: T) -> Rotmat<Mat3<T>>
|
|
|
|
{
|
|
|
|
let _1 = One::one::<T>();
|
|
|
|
let ux = axis.x;
|
|
|
|
let uy = axis.y;
|
|
|
|
let uz = axis.z;
|
|
|
|
let sqx = ux * ux;
|
|
|
|
let sqy = uy * uy;
|
|
|
|
let sqz = uz * uz;
|
2013-05-20 18:02:02 +08:00
|
|
|
let cos = angle.cos();
|
2013-05-17 05:30:39 +08:00
|
|
|
let one_m_cos = _1 - cos;
|
2013-05-20 18:02:02 +08:00
|
|
|
let sin = angle.sin();
|
2013-05-17 05:30:39 +08:00
|
|
|
|
|
|
|
Rotmat {
|
2013-05-19 04:03:45 +08:00
|
|
|
submat: mat3(
|
2013-05-17 05:30:39 +08:00
|
|
|
(sqx + (_1 - sqx) * cos),
|
|
|
|
(ux * uy * one_m_cos - uz * sin),
|
|
|
|
(ux * uz * one_m_cos + uy * sin),
|
|
|
|
|
|
|
|
(ux * uy * one_m_cos + uz * sin),
|
|
|
|
(sqy + (_1 - sqy) * cos),
|
|
|
|
(uy * uz * one_m_cos - ux * sin),
|
|
|
|
|
|
|
|
(ux * uz * one_m_cos - uy * sin),
|
|
|
|
(uy * uz * one_m_cos + ux * sin),
|
|
|
|
(sqz + (_1 - sqz) * cos))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-21 23:25:01 +08:00
|
|
|
impl<T: Div<T, T> + Trigonometric + Neg<T> + Mul<T, T> + Add<T, T> + Copy>
|
2013-05-19 19:44:27 +08:00
|
|
|
Rotation<Vec1<T>> for Rotmat<Mat2<T>>
|
|
|
|
{
|
|
|
|
fn rotation(&self) -> Vec1<T>
|
2013-05-20 18:02:02 +08:00
|
|
|
{ vec1(-(self.submat.m12 / self.submat.m11).atan()) }
|
2013-05-19 19:44:27 +08:00
|
|
|
|
|
|
|
fn rotated(&self, rot: &Vec1<T>) -> Rotmat<Mat2<T>>
|
|
|
|
{ rotmat2(rot.x) * *self }
|
|
|
|
|
|
|
|
fn rotate(&mut self, rot: &Vec1<T>)
|
|
|
|
{ *self = self.rotated(rot) }
|
|
|
|
}
|
|
|
|
|
2013-05-21 23:25:01 +08:00
|
|
|
impl<T: Div<T, T> + Trigonometric + Neg<T> + Mul<T, T> + Add<T, T> + Copy +
|
2013-05-19 19:44:27 +08:00
|
|
|
One + Sub<T, T>>
|
|
|
|
Rotation<(Vec3<T>, T)> for Rotmat<Mat3<T>>
|
|
|
|
{
|
|
|
|
fn rotation(&self) -> (Vec3<T>, T)
|
|
|
|
{ fail!("Not yet implemented.") }
|
|
|
|
|
|
|
|
fn rotated(&self, &(axis, angle): &(Vec3<T>, T)) -> Rotmat<Mat3<T>>
|
|
|
|
{ rotmat3(&axis, angle) * *self }
|
|
|
|
|
|
|
|
fn rotate(&mut self, rot: &(Vec3<T>, T))
|
|
|
|
{ *self = self.rotated(rot) }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Copy + Rand + Trigonometric + Neg<T>> Rand for Rotmat<Mat2<T>>
|
2013-05-18 08:11:59 +08:00
|
|
|
{
|
2013-05-21 23:25:01 +08:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> Rotmat<Mat2<T>>
|
2013-05-19 04:03:45 +08:00
|
|
|
{ rotmat2(rng.gen()) }
|
2013-05-18 08:11:59 +08:00
|
|
|
}
|
|
|
|
|
2013-05-19 19:44:27 +08:00
|
|
|
impl<T: Copy + Rand + Trigonometric + Neg<T> + One + Sub<T, T> + Add<T, T> +
|
2013-05-18 08:11:59 +08:00
|
|
|
Mul<T, T>>
|
|
|
|
Rand for Rotmat<Mat3<T>>
|
|
|
|
{
|
2013-05-21 23:25:01 +08:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> Rotmat<Mat3<T>>
|
2013-05-19 04:03:45 +08:00
|
|
|
{ rotmat3(&rng.gen(), rng.gen()) }
|
2013-05-18 08:11:59 +08:00
|
|
|
}
|
|
|
|
|
2013-05-17 05:30:39 +08:00
|
|
|
impl<M: Dim> Dim for Rotmat<M>
|
|
|
|
{
|
|
|
|
fn dim() -> uint
|
|
|
|
{ Dim::dim::<M>() }
|
|
|
|
}
|
|
|
|
|
2013-05-19 19:44:27 +08:00
|
|
|
impl<M: Copy + One + Zero> One for Rotmat<M>
|
2013-05-17 05:30:39 +08:00
|
|
|
{
|
|
|
|
fn one() -> Rotmat<M>
|
|
|
|
{ Rotmat { submat: One::one() } }
|
|
|
|
}
|
|
|
|
|
2013-05-19 19:44:27 +08:00
|
|
|
impl<M: Copy + Mul<M, M>> Mul<Rotmat<M>, Rotmat<M>> for Rotmat<M>
|
2013-05-17 05:30:39 +08:00
|
|
|
{
|
|
|
|
fn mul(&self, other: &Rotmat<M>) -> Rotmat<M>
|
|
|
|
{ Rotmat { submat: self.submat.mul(&other.submat) } }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<V, M: RMul<V>> RMul<V> for Rotmat<M>
|
|
|
|
{
|
|
|
|
fn rmul(&self, other: &V) -> V
|
|
|
|
{ self.submat.rmul(other) }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<V, M: LMul<V>> LMul<V> for Rotmat<M>
|
|
|
|
{
|
|
|
|
fn lmul(&self, other: &V) -> V
|
|
|
|
{ self.submat.lmul(other) }
|
|
|
|
}
|
|
|
|
|
2013-05-20 03:45:30 +08:00
|
|
|
impl<M: Copy> DeltaTransform<M> for Rotmat<M>
|
|
|
|
{
|
|
|
|
fn delta_transform(&self) -> M
|
|
|
|
{ self.submat }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<M: Copy + Transpose> Inv for Rotmat<M>
|
2013-05-17 05:30:39 +08:00
|
|
|
{
|
|
|
|
fn invert(&mut self)
|
|
|
|
{ self.transpose() }
|
|
|
|
|
|
|
|
fn inverse(&self) -> Rotmat<M>
|
|
|
|
{ self.transposed() }
|
|
|
|
}
|
|
|
|
|
2013-05-19 19:44:27 +08:00
|
|
|
impl<M: Copy + Transpose>
|
2013-05-17 05:30:39 +08:00
|
|
|
Transpose for Rotmat<M>
|
|
|
|
{
|
|
|
|
fn transposed(&self) -> Rotmat<M>
|
|
|
|
{ Rotmat { submat: self.submat.transposed() } }
|
|
|
|
|
|
|
|
fn transpose(&mut self)
|
|
|
|
{ self.submat.transpose() }
|
|
|
|
}
|
|
|
|
|
2013-05-21 23:25:01 +08:00
|
|
|
impl<T: ApproxEq<T>, M: ApproxEq<T>> ApproxEq<T> for Rotmat<M>
|
2013-05-17 06:23:25 +08:00
|
|
|
{
|
2013-05-21 23:25:01 +08:00
|
|
|
fn approx_epsilon() -> T
|
|
|
|
{ ApproxEq::approx_epsilon::<T, T>() }
|
2013-05-17 06:23:25 +08:00
|
|
|
|
2013-05-21 23:25:01 +08:00
|
|
|
fn approx_eq(&self, other: &Rotmat<M>) -> bool
|
|
|
|
{ self.submat.approx_eq(&other.submat) }
|
|
|
|
|
|
|
|
fn approx_eq_eps(&self, other: &Rotmat<M>, epsilon: &T) -> bool
|
|
|
|
{ self.submat.approx_eq_eps(&other.submat, epsilon) }
|
2013-05-17 06:23:25 +08:00
|
|
|
}
|
|
|
|
|
2013-05-19 19:44:27 +08:00
|
|
|
impl<M: ToStr> ToStr for Rotmat<M>
|
2013-05-17 05:30:39 +08:00
|
|
|
{
|
|
|
|
fn to_str(&self) -> ~str
|
|
|
|
{ ~"Rotmat {" + " submat: " + self.submat.to_str() + " }" }
|
|
|
|
}
|