matrix: add convenience type matrix4f

This commit is contained in:
Danny Robson 2015-01-13 18:38:48 +11:00
parent 7f152e5350
commit 82ee179b64

View File

@ -73,6 +73,7 @@ namespace util {
};
typedef matrix<float> matrixf;
typedef matrix<float> matrix4f;
template <typename T>
std::ostream& operator<< (std::ostream&, const matrix<T>&);