diff --git a/src/test/test_mat.rs b/src/test/test_mat.rs index 806f448..1dc9c05 100644 --- a/src/test/test_mat.rs +++ b/src/test/test_mat.rs @@ -78,7 +78,7 @@ fn test_Mat2() { // fuzzy_eq // eq - // let ident: Mat2 = NumericMatrixNxN::identity(); // FIXME: there's something wrong with static functions here! + // let ident: Mat2 = Matrix::identity(); // FIXME: there's something wrong with static functions here! let ident: Mat2 = Mat2::identity(); assert ident.is_identity(); @@ -208,7 +208,7 @@ fn test_Mat3() { 0f, 0.5f, -2f, 0f, 0f, 1f); - // let ident: Mat3 = NumericMatrixNxN::identity(); // FIXME: there's something wrong with static functions here! + // let ident: Mat3 = Matrix::identity(); // FIXME: there's something wrong with static functions here! let ident: Mat3 = Mat3::identity(); assert option::unwrap(ident.inverse()) == ident; @@ -369,7 +369,7 @@ fn test_Mat4() { 4f, -8f, 4f, 8f, -3f, 4f, 1f, -8f).mul_t(0.125f); - // let ident: Mat4 = NumericMatrixNxN::identity(); + // let ident: Mat4 = Matrix::identity(); let ident: Mat4 = Mat4::identity(); assert option::unwrap(ident.inverse()) == ident;