#[test] use core::num::{One, abs}; #[test] use core::rand::{random}; #[test] use core::cmp::ApproxEq; #[test] use traits::inv::Inv; #[test] use traits::rotation::Rotation; // #[test] // use traits::dim::d7; #[test] use dim1::vec1::vec1; #[test] use dim1::mat1::Mat1; #[test] use dim2::mat2::Mat2; #[test] use dim3::mat3::Mat3; // #[test] // use ndim::nmat::NMat; #[test] use adaptors::rotmat::Rotmat; macro_rules! test_inv_mat_impl( ($t:ty) => ( for uint::range(0u, 10000u) |_| { let randmat : $t = random(); assert!((randmat.inverse() * randmat).approx_eq(&One::one())); } ); ) #[test] fn test_inv_mat1() { test_inv_mat_impl!(Mat1); } #[test] fn test_inv_mat2() { test_inv_mat_impl!(Mat2); } #[test] fn test_inv_mat3() { test_inv_mat_impl!(Mat3); } // #[test] // fn test_inv_nmat() // { test_inv_mat_impl!(NMat); } #[test] fn test_rotation2() { for uint::range(0u, 10000u) |_| { let randmat = One::one::>>(); let ang = &vec1(abs::(random()) % f64::consts::pi); assert!(randmat.rotated(ang).rotation().approx_eq(ang)); } }