hyporo-cpp/source/hyporo/hyplib/matrix/matrix.hpp

16 lines
293 B
C++
Raw Normal View History

2022-10-27 22:27:50 +05:00
#include "../scalar/scalar.hpp"
#include "matrix_space.hpp"
2022-09-22 20:43:06 +05:00
2022-10-27 22:27:50 +05:00
namespace hpr
2022-09-22 20:43:06 +05:00
{
2022-10-27 22:27:50 +05:00
template <typename Type, size_t Row, size_t Col>
using mat = MatrixSpace<Type, Row, Col>;
2022-09-22 20:43:06 +05:00
2022-10-27 22:27:50 +05:00
using mat2 = MatrixSpace<scalar, 2, 2>;
using mat3 = MatrixSpace<scalar, 3, 3>;
2022-09-22 20:43:06 +05:00
using mat4 = MatrixSpace<scalar, 4, 4>;
2022-10-27 22:27:50 +05:00
}