1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

LibGfx: Add Matrix4x4::elements() getters

This commit is contained in:
AnotherTest 2020-07-24 09:59:07 +04:30 committed by Andreas Kling
parent d1fdc1a2cf
commit 2d96437bbb

View file

@ -48,6 +48,9 @@ public:
{ {
} }
auto elements() const { return m_elements; }
auto elements() { return m_elements; }
Matrix4x4 operator*(const Matrix4x4& other) const Matrix4x4 operator*(const Matrix4x4& other) const
{ {
Matrix4x4 product; Matrix4x4 product;