12 lines
157 B
C++
12 lines
157 B
C++
|
#include "MatrixSpace.hpp"
|
||
|
|
||
|
|
||
|
namespace hyporo
|
||
|
{
|
||
|
|
||
|
using mat3 = MatrixSpace<scalar, 3, 3>;
|
||
|
|
||
|
using mat4 = MatrixSpace<scalar, 4, 4>;
|
||
|
|
||
|
} // end namespace hyporo
|