From 67891ac175dd1bc6ce49e0146b43399214394ea5 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 13 Jul 2015 16:27:54 +1000 Subject: [PATCH] matrix: add matrix4 typedef --- matrix.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/matrix.hpp b/matrix.hpp index d871db51..a320ff60 100644 --- a/matrix.hpp +++ b/matrix.hpp @@ -75,6 +75,8 @@ namespace util { static const matrix ZEROES; }; + template using matrix4 = matrix; + typedef matrix matrixf; typedef matrix matrix4f;