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

FontEditor: Support flipping and rotating

This is especially useful for highly symmetric scripts like this:
https://www.unicode.org/charts/PDF/U1400.pdf
This commit is contained in:
Ben Wiederhake 2021-11-20 02:38:24 +01:00 committed by Andreas Kling
parent 1dfb3ff4eb
commit 7180813cd4
4 changed files with 138 additions and 2 deletions

View file

@ -34,6 +34,10 @@ public:
void delete_glyph();
bool is_glyph_empty();
void rotate_90();
void flip_vertically();
void flip_horizontally();
int preferred_width() const;
int preferred_height() const;