Fixed line and circle drawing code in Window. But it looks bad ans some form of dithering is definitely required.

This commit is contained in:
2019-09-04 05:58:36 +02:00
parent 5b70511570
commit 1122546853
3 changed files with 42 additions and 60 deletions

View File

@ -4,6 +4,8 @@
#include "prototypes.h"
class Window {
private:
void _circle_point(int x0, int y0, int x1, int y1, CRGB* color);
public:
const uint8_t x, y;
const uint8_t width, height;