From db956287d3aa194dda91d05c8eb286de2a569edf Mon Sep 17 00:00:00 2001 From: Vaxry Date: Wed, 25 Sep 2024 00:05:20 +0100 Subject: [PATCH] mat3x3: fix comment --- include/hyprutils/math/Mat3x3.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hyprutils/math/Mat3x3.hpp b/include/hyprutils/math/Mat3x3.hpp index 72f8e87..040ee8e 100644 --- a/include/hyprutils/math/Mat3x3.hpp +++ b/include/hyprutils/math/Mat3x3.hpp @@ -24,7 +24,7 @@ namespace Hyprutils { /* create an output projection matrix */ static Mat3x3 outputProjection(const Vector2D& size, eTransform transform); - /* get the matrix as an array, in a RTL TTB order. */ + /* get the matrix as an array, in a row-major order. */ std::array getMatrix() const; /* create a box projection matrix */