mini-led-cube/editor/src/display.h
Aaron Mueller 1b468b8c22 Start implementing a 3D GUI to configure the cube.
The idea is to use OpenGL and some simple C code to display a 3D cube.
With the mouse you can define which LED should be on or off on a
particular frame. With this technique, you can define whole sequences of
frames to form animations.
2011-10-19 01:10:15 +02:00

10 lines
85 B
C

#ifndef _DISPLAY_H
#define _DISPLAY_H
void drawLEDCube();
void display();
#endif