Windows 10 logo in glut/OpenGL
Source Code: #include <GL/freeglut.h> void display ( void ) { glClear ( GL_COLOR_BUFFER_BIT ); //draw box no:1 (top right) glColor3f ( 0.117647 , 0.564706 , 1 ); //(red, green, blue) glBegin ( GL_POLYGON ); //A glVertex3f ( 0.0 , 12.0 , 0.0 ); //B glVertex3f ( 12.0 , 15.0 , 0.0 ); //C glVertex3f ( 12.0 , 0.5 , 0.0 ); //D glVertex3f ( 0.0 , 0.5 , 0.0 ); ...