From 2d96437bbb5f3c7cb7768e691e079340bb7366e2 Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Fri, 24 Jul 2020 09:59:07 +0430 Subject: [PATCH] LibGfx: Add Matrix4x4::elements() getters --- Libraries/LibGfx/Matrix4x4.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Libraries/LibGfx/Matrix4x4.h b/Libraries/LibGfx/Matrix4x4.h index 54cf73db18..b7213968a0 100644 --- a/Libraries/LibGfx/Matrix4x4.h +++ b/Libraries/LibGfx/Matrix4x4.h @@ -48,6 +48,9 @@ public: { } + auto elements() const { return m_elements; } + auto elements() { return m_elements; } + Matrix4x4 operator*(const Matrix4x4& other) const { Matrix4x4 product;