asdf

Dependencies:   mbed

Fork of manworm_ticker_tv by Bayley Wang

Revision:
9:2a47b9ff8911
Child:
11:537cde55b27f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gfx.h	Sat Mar 10 05:09:55 2018 +0000
@@ -0,0 +1,22 @@
+#ifndef _gfx
+#define _gfx
+struct point_t
+{
+    float x,y,z;
+};
+
+struct line_t
+{
+    point_t *a, *b;
+};
+
+struct cube_t
+{
+    point_t* points[8];
+    line_t* lines[12];
+};
+
+void init_gfx();
+char* get_gfx_stat();
+void new_frame(char c);
+#endif
\ No newline at end of file