From ba60d415443b3e95b272e7facb21523caeb3d9be Mon Sep 17 00:00:00 2001 From: BlackMATov Date: Wed, 25 Nov 2020 18:56:13 +0700 Subject: [PATCH] vecNz and matNz typedefs --- headers/vmath.hpp/vmath_fwd.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/headers/vmath.hpp/vmath_fwd.hpp b/headers/vmath.hpp/vmath_fwd.hpp index be41369..6121c00 100644 --- a/headers/vmath.hpp/vmath_fwd.hpp +++ b/headers/vmath.hpp/vmath_fwd.hpp @@ -41,6 +41,10 @@ namespace vmath_hpp using vec2u = vec; using vec3u = vec; using vec4u = vec; + + using vec2z = vec; + using vec3z = vec; + using vec4z = vec; } namespace vmath_hpp @@ -67,4 +71,8 @@ namespace vmath_hpp using mat2u = mat; using mat3u = mat; using mat4u = mat; + + using mat2z = mat; + using mat3z = mat; + using mat4z = mat; }