use core::num::{One, Zero}; // , Trigonometric}; use std::cmp::FuzzyEq; use traits::workarounds::rlmul::{RMul, LMul}; use traits::workarounds::trigonometric::Trigonometric; use traits::dim::Dim; use traits::inv::Inv; use traits::transpose::Transpose; use dim2::mat2::Mat2; use dim3::mat3::Mat3; use dim3::vec3::Vec3; // FIXME: use a newtype here? #[deriving(Eq)] pub struct Rotmat { priv submat: M } pub fn Rotmat2>(angle: T) -> Rotmat> { let coa = Trigonometric::cos(angle); let sia = Trigonometric::sin(angle); Rotmat { submat: Mat2(coa, -sia, sia, coa) } } pub fn Rotmat3 + One + Sub + Add + Mul> (axis: &Vec3, angle: T) -> Rotmat> { let _1 = One::one::(); let ux = axis.x; let uy = axis.y; let uz = axis.z; let sqx = ux * ux; let sqy = uy * uy; let sqz = uz * uz; let cos = Trigonometric::cos(angle); let one_m_cos = _1 - cos; let sin = Trigonometric::sin(angle); Rotmat { submat: Mat3( (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)) } } impl Dim for Rotmat { fn dim() -> uint { Dim::dim::() } } impl One for Rotmat { fn one() -> Rotmat { Rotmat { submat: One::one() } } } impl> Mul, Rotmat> for Rotmat { fn mul(&self, other: &Rotmat) -> Rotmat { Rotmat { submat: self.submat.mul(&other.submat) } } } impl> RMul for Rotmat { fn rmul(&self, other: &V) -> V { self.submat.rmul(other) } } impl> LMul for Rotmat { fn lmul(&self, other: &V) -> V { self.submat.lmul(other) } } impl Inv for Rotmat { fn invert(&mut self) { self.transpose() } fn inverse(&self) -> Rotmat { self.transposed() } } impl Transpose for Rotmat { fn transposed(&self) -> Rotmat { Rotmat { submat: self.submat.transposed() } } fn transpose(&mut self) { self.submat.transpose() } } impl> FuzzyEq for Rotmat { fn fuzzy_eq(&self, other: &Rotmat) -> bool { self.submat.fuzzy_eq(&other.submat) } fn fuzzy_eq_eps(&self, other: &Rotmat, epsilon: &T) -> bool { self.submat.fuzzy_eq_eps(&other.submat, epsilon) } } impl ToStr for Rotmat { fn to_str(&self) -> ~str { ~"Rotmat {" + " submat: " + self.submat.to_str() + " }" } }