Tag: House

30
May
2016

OpenGL Graphics Code: Build a house with GLUT

#include <windows.h> #include <GL\glut.h> void myInit (void) { glClearColor(0.0,0.0,0.0,0.0); // sets background color to white // sets…