6 void drawRect(uint32_t x, uint32_t y, uint32_t w, uint32_t h, uint32_t color);
7 void drawRectLine(
int x,
int y,
int w,
int h,
int color,
int color2,
int c);
12 void drawCircle(
int cx,
int cy,
int radius, uint32_t color);
15 void drawRoundedSquare(
int x,
int y,
int size,
int radius, uint32_t fill_color, uint32_t border_color);
16 void drawRoundedRectangle(
int x,
int y,
int width,
int height,
int radius, uint32_t fill_color, uint32_t border_color);
uint32_t mode
Режим работы (0 - Обычный | 1 - Режим логирования)
void drawCircle(int cx, int cy, int radius, uint32_t color)
Рисует круг
void drawRoundedRectangle(int x, int y, int width, int height, int radius, uint32_t fill_color, uint32_t border_color)
Рисуем округленный прямоугольник, закрашиваем его и обводим
void drawFilledCircle(int x0, int y0, int radius, uint32_t color)
Закрашивает круг
void drawRect(uint32_t x, uint32_t y, uint32_t w, uint32_t h, uint32_t color)
Рисуем залитый прямоугольник
void drawFilledRectBorder(int x0, int y0, int radius, int w, int mode, uint32_t color)
Закрашивает округленный куб
void drawRectLine(int x, int y, int w, int h, int color, int color2, int c)
Рисует узор вокруг прямоугольника
void drawHorizontalLine(int x1, int x2, int y, uint32_t color)
Рисует горизонтальную линию
void drawVerticalLine(int y1, int y2, int x, uint32_t color)
Рисует вертикальную линию
void drawCirclePoints(int cx, int cy, int x, int y, uint32_t color)
Рисует окружные пиксели круга линию
void drawRectBorder(int x, int y, int w, int h, int color)
Рисует линию вокруг прямоугольника
void drawRoundedSquare(int x, int y, int size, int radius, uint32_t fill_color, uint32_t border_color)
Рисуем округленный куб закрашиваем его и обводим