#ifndef TYPES_H
#define TYPES_H

#include <GL/glut.h>

#define GL_COORD GL_FLOAT
typedef GLfloat coord ;
typedef struct { coord x,y,z; } vector ;
typedef coord matrix [4][4] ;

#define COORD_INFINITY 1000000 ;

#endif
