void MyReshape(int NewWidth, int NewHeight){
glViewport(0,0,NewWidth, NewHeight);
GLfloat WidthFactor = (GLfloat)NewWidth / (GLfloat)400;
GLfloat HeightFactor = (GLfloat)NewHeight / (GLfloat)400;
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(-1.0*WidthFactor, 1.0*WidthFactor, -1.0*HeightFactor, 1.0*HeightFactor, -1.0, 1.0);
}
int main(int argc, char** argv){
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGB);
glutInitWindowSize(400, 400);
glutInitWindowPosition(300, 300);
glutCreateWindow("OpenGL Drawing Example");
glClearColor(1.0,1.0,1.0,0.0);
glutDisplayFunc(MyDisplay);
//윈도우 사이즈 변경에 따른 왜곡 방지
glutReshapeFunc(MyReshape);
glutMainLoop();
return 0;
}
'old drawer > OpenGL' 카테고리의 다른 글
[OpenGL] 물체 중심점을 원점으로 물체 회전하기 (0) | 2013.06.12 |
---|---|
[OpenGL] 관련 링크 (0) | 2013.05.07 |
[OpenGL] OpenGL 라이브러리 설치 방법 (0) | 2013.04.29 |
[OpenGL] MFC 다이얼로그 기반에서 OpenGL 셋팅하기 (0) | 2013.04.29 |
[OpenGL] glClear()와 glClearColor()의 차이 (0) | 2011.09.28 |