29 files changed, 1185 insertions, 0 deletions
diff --git a/src/controller/exp004display.c b/src/controller/exp004display.c new file mode 100644 index 0000000..e893ad6 --- a/dev/null +++ b/src/controller/exp004display.c @@ -0,0 +1,16 @@ +#include "exp004display.h" +#include "../view/exp004geometry.h" +#include <GL/glut.h> +#include <stdio.h> + +#define WINHEIGHT 500 + +void +exp004display (void) +{ + glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + exp004geometry (GL_RENDER); + glutSwapBuffers (); + + return; +} |