mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:47:35 +00:00
LibGfx: Add Matrix4x4::elements() getters
This commit is contained in:
parent
d1fdc1a2cf
commit
2d96437bbb
1 changed files with 3 additions and 0 deletions
|
@ -48,6 +48,9 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
auto elements() const { return m_elements; }
|
||||
auto elements() { return m_elements; }
|
||||
|
||||
Matrix4x4 operator*(const Matrix4x4& other) const
|
||||
{
|
||||
Matrix4x4 product;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue