00001 #ifndef __DRAWINGUTILS_H
00002 #define __DRAWINGUTILS_H
00003
00004 #include <GL/gl.h>
00005 #include <GL/glu.h>
00006 #include "../positions/position.h"
00007
00008 #define CoordMult 30
00009 #define RectSize 10
00010 #define CubeSize 15
00011
00012 void drawRect(GLfloat color[], Position *location);
00013 void drawSelectionCube(GLfloat color[], Position *location);
00014 void drawLine(GLfloat color[], Position *location1, Position *location2);
00015 void drawCube(GLfloat color[], Position *location);
00016
00017 #endif