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
Notes: sideshowbarker 2024-07-19 04:38:35 +09:00

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 product;