mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 09:39:39 +00:00
LibGfx: Add Matrix4x4::elements() getters
This commit is contained in:
parent
d1fdc1a2cf
commit
2d96437bbb
Notes:
sideshowbarker
2024-07-19 04:38:35 +09:00
Author: https://github.com/alimpfard
Commit: 2d96437bbb
Pull-request: https://github.com/SerenityOS/serenity/pull/2869
Reviewed-by: https://github.com/awesomekling
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 operator*(const Matrix4x4& other) const
|
||||||
{
|
{
|
||||||
Matrix4x4 product;
|
Matrix4x4 product;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue