|
#define | CANVAS_BEGIN_SCRIPT(name) const uint8_t name[] __PROGMEM = { |
|
#define | CANVAS_CALL_SCRIPT(ix) Canvas::CALL_SCRIPT, ix, |
|
#define | CANVAS_SET_CANVAS_COLOR(r, g, b) Canvas::SET_CANVAS_COLOR, r, g, b, |
|
#define | CANVAS_SET_PEN_COLOR(r, g, b) Canvas::SET_PEN_COLOR, r, g, b, |
|
#define | CANVAS_SET_TEXT_COLOR(r, g, b) Canvas::SET_TEXT_COLOR, r, g, b, |
|
#define | CANVAS_SET_TEXT_SCALE(s) Canvas::SET_TEXT_SCALE, s, |
|
#define | CANVAS_SET_TEXT_PORT(x, y, w, h) Canvas::SET_TEXT_PORT, x, y, w, h, |
|
#define | CANVAS_SET_TEXT_FONT(ix) Canvas::SET_TEXT_FONT, ix, |
|
#define | CANVAS_SET_CURSOR(x, y) Canvas::SET_CURSOR, x, y, |
|
#define | CANVAS_MOVE_CURSOR(dx, dy) Canvas::MOVE_CURSOR, (uint8_t) dx, (uint8_t) dy, |
|
#define | CANVAS_DRAW_BITMAP(ix, w, h, s) Canvas::DRAW_BITMAP, ix, w, h, s, |
|
#define | CANVAS_DRAW_ICON(ix, s) Canvas::DRAW_ICON, ix, s, |
|
#define | CANVAS_DRAW_PIXEL() Canvas::DRAW_PIXEL, |
|
#define | CANVAS_DRAW_LINE(x, y) Canvas::DRAW_LINE, x, y, |
|
#define | CANVAS_DRAW_POLY(ix, s) Canvas::DRAW_POLY, ix, s, |
|
#define | CANVAS_DRAW_STROKE(ix, s) Canvas::DRAW_STROKE, ix, s, |
|
#define | CANVAS_DRAW_RECT(w, h) Canvas::DRAW_RECT, w, h, |
|
#define | CANVAS_FILL_RECT(w, h) Canvas::FILL_RECT, w, h, |
|
#define | CANVAS_DRAW_ROUNDRECT(w, h, r) Canvas::DRAW_ROUNDRECT, w, h, r, |
|
#define | CANVAS_FILL_ROUNDRECT(w, h, r) Canvas::FILL_ROUNDRECT, w, h, r, |
|
#define | CANVAS_DRAW_CIRCLE(r) Canvas::DRAW_CIRCLE, r, |
|
#define | CANVAS_FILL_CIRCLE(r) Canvas::FILL_CIRCLE, r, |
|
#define | CANVAS_DRAW_CHAR(c) Canvas::DRAW_CHAR, c, |
|
#define | CANVAS_DRAW_STRING(ix) Canvas::DRAW_STRING, ix, |
|
#define | CANVAS_FILL_SCREEN() Canvas::FILL_SCREEN, |
|
#define | CANVAS_END_SCRIPT Canvas::END_SCRIPT }; |
|
- Version
- 1.0
License
Copyright (C) 2012-2015, Mikael Patel
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
This file is part of the Arduino Che Cosa project.
Definition in file Canvas.hh.