This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include <gl/glut.h> | |
#define KEY_ESC 27 /* GLUT doesn't supply this */ | |
int fullscreen = 0; | |
int mouseDown = 0; | |
float xrot = 100.0f; | |
float yrot = -100.0f; |