/************************************************************************* FILE: geometry.h Functions creating the geometry of the objects in the scene and drawing them. Author: Dana Vrajitoru, IUSB Class: C481 B581 Computer Graphics **************************************************************************/ #ifndef GEOMETRY_H #define GEOMETRY_H const int MESH_ID = 1; // Read .raw file as a triangle strip void loadRawFile(char *filename); // a version of drawing the window that uses the display list void draw1(); #endif