1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:37:44 +00:00

LibTTF: Fix code after rebase

This commit is contained in:
Stephan Unverwerth 2020-10-21 00:03:07 +02:00 committed by Andreas Kling
parent 3b31f069f0
commit a060b6cefd
7 changed files with 120 additions and 74 deletions

View file

@ -38,15 +38,6 @@ public:
: m_values { 1, 0, 0, 1, 0, 0 }
{
}
AffineTransform(float a, float b, float c, float d, float e, float f)
{
m_values[0] = a;
m_values[1] = b;
m_values[2] = c;
m_values[3] = d;
m_values[4] = e;
m_values[5] = f;
}
AffineTransform(float a, float b, float c, float d, float e, float f)
: m_values { a, b, c, d, e, f }
@ -81,8 +72,6 @@ public:
AffineTransform& rotate_radians(float);
AffineTransform& multiply(const AffineTransform&);
AffineTransform operator*(const AffineTransform&) const;
private:
float m_values[6] { 0 };
};