diff options
author | Tectu <joel@unormal.org> | 2012-06-23 21:15:31 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-23 21:15:31 +0200 |
commit | 17feb4361e02ceefb3266063ceb04e714895ddb6 (patch) | |
tree | b3d8fa51009a97fa6e14be3182a6f4fd10363467 /graph.h | |
parent | 9aba8fad0abf52ccb78190bdf60462e8086fbb35 (diff) | |
download | uGFX-17feb4361e02ceefb3266063ceb04e714895ddb6.tar.gz uGFX-17feb4361e02ceefb3266063ceb04e714895ddb6.tar.bz2 uGFX-17feb4361e02ceefb3266063ceb04e714895ddb6.zip |
graphDrawSystem() does take now grid-X and grid-Y values
Diffstat (limited to 'graph.h')
-rw-r--r-- | graph.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -11,11 +11,12 @@ extern "C" { * * param: * - x0, y0, x1, y1: location of arrows + * - gridX, gridY: grid size in X and Y direction * - color: color of arrows * * return: none */ -void graphDrawSystem(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t color); +void graphDrawSystem(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t gridX, uint16_t gridY, uint16_t color); /* * Description: does draw coordinates into graph as dots |