diff options
Diffstat (limited to 'src/math')
| -rw-r--r-- | src/math/mat4.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/math/mat4.hpp b/src/math/mat4.hpp index cbbee9a..77c865a 100644 --- a/src/math/mat4.hpp +++ b/src/math/mat4.hpp @@ -7,7 +7,8 @@ namespace engine::math { -// values are represented in memory as column first, meaning values[1] is the first column, 2nd row +// values are represented in memory as column-major order, meaning values[1] is the first column, +// 2nd row struct Matrix4 { static constexpr Matrix4 idty() { return { |
