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;