matrix: add matrix4 typedef

This commit is contained in:
Danny Robson 2015-07-13 16:27:54 +10:00
parent 0533e3caaf
commit 67891ac175

View File

@ -75,6 +75,8 @@ namespace util {
static const matrix<T> ZEROES;
};
template <typename T> using matrix4 = matrix<T>;
typedef matrix<float> matrixf;
typedef matrix<float> matrix4f;