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

LibGfx: Add AffineTransform::inverse

This commit is contained in:
Simon Wanner 2022-03-18 01:17:32 +01:00 committed by Andreas Kling
parent a3c80f05ba
commit 9c97bd0de4
2 changed files with 17 additions and 0 deletions

View file

@ -62,6 +62,8 @@ public:
AffineTransform& rotate_radians(float);
AffineTransform& multiply(const AffineTransform&);
Optional<AffineTransform> inverse() const;
private:
float m_values[6] { 0 };
};