// // Created by 顾涵彬 on 2019-08-28. // #include #include "Matrix.h" #include "SquareMatrix.h" #include "MatrixSolver.h" #include "Quaternion.h" #ifndef MATRIX_CTAIN_H #define MATRIX_CTAIN_H namespace Ctain { typedef SMatrix Matrixd; typedef Matrix MatrixXd; typedef Matrix Matrix23d; typedef SMatrix Matrix3d; typedef SMatrix Matrix4d; typedef SMatrix Matrixf; typedef Matrixf Matrix2f; typedef Matrixf Matrix3f; typedef Matrix Vectorf; typedef Vectorf Vector2f; typedef Vectorf Vector3f; typedef Matrix Vectord; typedef Matrix Vector2d; typedef Matrix Vector3d; typedef Matrix MatrixXcd; typedef Quaternion Quaterniond; } // end namespace Ctain #endif // Ctain_CtainBASE_H