그래픽스 실습

학교/그래픽스 2013. 4. 12. 17:14

#include <glut.h>


void MyDisplay()

{

glClear(GL_COLOR_BUFFER_BIT);


glBegin(GL_POLYGON);

glVertex3f(-0.5, -0.5, 0.0);

glVertex3f(0.5, -0.5, 0.0);

glVertex3f(0.5, 0.5, 0.0);

glVertex3f(-0.5, 0.5, 0.0);

glEnd();

glFlush();


}

int main()

{

glutCreateWindow("OpenGL Drawing Example");

glutDisplayFunc(MyDisplay);

glutMainLoop();

return 0;

}

'학교 > 그래픽스' 카테고리의 다른 글

OPENGL 설치  (0) 2013.06.07
openGL 설치  (0) 2013.06.05
reshape.cpp  (0) 2013.05.03
mouse.cpp  (0) 2013.05.03