LibGfx: Add Painter::fill_ellipse()

This commit is contained in:
Sergey Bugaev 2020-05-24 21:03:48 +03:00 committed by Andreas Kling
commit 8520d3a425
Notes: sideshowbarker 2024-07-19 06:10:49 +09:00
2 changed files with 20 additions and 0 deletions

View file

@ -56,6 +56,7 @@ public:
void fill_rect_with_checkerboard(const Rect&, const Size&, Color color_dark, Color color_light);
void fill_rect_with_gradient(Orientation, const Rect&, Color gradient_start, Color gradient_end);
void fill_rect_with_gradient(const Rect&, Color gradient_start, Color gradient_end);
void fill_ellipse(const Rect&, Color);
void draw_rect(const Rect&, Color, bool rough = false);
void draw_bitmap(const Point&, const CharacterBitmap&, Color = Color());
void draw_bitmap(const Point&, const GlyphBitmap&, Color = Color());