1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:47:34 +00:00

LibGfx: Add draw_triangle() for drawing filled triangles

This commit is contained in:
Stephan Unverwerth 2020-04-18 00:13:22 +02:00 committed by Andreas Kling
parent 2b7fc08db3
commit acd4676803
2 changed files with 69 additions and 0 deletions

View file

@ -51,6 +51,7 @@ public:
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());
void draw_triangle(const Point&, const Point&, const Point&, Color);
void draw_ellipse_intersecting(const Rect&, Color, int thickness = 1);
void set_pixel(const Point&, Color);
void draw_line(const Point&, const Point&, Color, int thickness = 1, bool dotted = false);