mbed I2C IMU+LCD

draw2D.h

Committer:
rkuo2000
Date:
2016-10-20
Revision:
2:6b9ce9b7f08a

File content as of revision 2:6b9ce9b7f08a:


class Draw2D {
    public:
    void drawLine(int x1, int y1, int x2, int y2, int fgColor, int bgColor);
    void drawCircle(int xc, int yc, int r, int fgColor, int bgColor);
    void drawRectangle(int x0, int y0, int x1, int y1, int fgColor, int bgColor);
    void drawTriangle(int x0, int y0, int x1, int y1, int x2, int y2, int fgColor, int bgColor);
};