mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 12:05:15 +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: https://github.com/SerenityOS/serenity/commit/2d96437bbb5 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 product;
|
||||
|
|
Loading…
Add table
Reference in a new issue