From 15cca07286d319d87693136d303699c03415e1a4 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Tue, 11 Jul 2023 18:35:29 -0400 Subject: [PATCH] fix mat4x4 scale op --- include/blt/math/matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/blt/math/matrix.h b/include/blt/math/matrix.h index cd607bd..28fd7db 100755 --- a/include/blt/math/matrix.h +++ b/include/blt/math/matrix.h @@ -96,7 +96,7 @@ namespace blt { m00(m00() * x); m11(m11() * y); - m22(m11() * z); + m22(m22() * z); *this = *this * scale_mat;