aboutsummaryrefslogtreecommitdiffstats
path: root/graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'graph.h')
-rw-r--r--graph.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/graph.h b/graph.h
new file mode 100644
index 00000000..14fd20de
--- /dev/null
+++ b/graph.h
@@ -0,0 +1,8 @@
+#ifndef GRAPH_H
+#define GRAPH_H
+
+void graphDrawSystem(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t color);
+void graphDrawDots(int16_t coord[][2], uint16_t entries, uint16_t radius, uint16_t color);
+void graphDrawNet(int16_t coord[][2], uint16_t entries, uint16_t radisu, uint16_t lineColor, uint16_t dotColor);
+
+#endif