关于glutReshapeFunc()

时间:2013-08-27 20:07:47

标签: c opengl glut

我最初绘制一个正方形的小代码,但是当我最大化窗口时,它会变为矩形。我知道这与纵横比有关,当我添加glutReshapeFunc(Reshape)时;称它完美无缺,我的意思是在最大化窗口后,它仍然是正方形。每次修改显示时以及第一次显示之前都会调用ReshapFunc。 我不仅仅是通过添加reshapefunc,它如何保持宽高比。请帮我理解这个。我在这里复制我的代码:

void display()
{
 glClear(GL_COLOR_BUFFER_BIT);
 glColor3f(0.5, 0.5, 1.0);

glBegin(GL_POLYGON);
glVertex2f(-0.5, -0.5);
glVertex2f(0.5, -0.5);
glVertex2f(0.5, 0.5);
glVertex2f(-0.5, 0.5);
glEnd();
glutSwapBuffers();
    glFlush();

}
void Reshape(int w, int h) {

glutPostRedisplay();

}
void init()
{

glClearColor(1.0, 0.0, 1.0, 0.0);

glColor3f(1.0, 1.0, 1.0);

glMatrixMode(GL_PROJECTION);
glLoadIdentity();

gluOrtho2D(-1.0, 1.0, -1.0, 1.0);

glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
}


int main(int argc, char** argv)
{


glutInit(&argc, argv);

glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE);
glutInitWindowSize(500, 500);
glutInitWindowPosition(200, 200);
glutCreateWindow("basics");


glutDisplayFunc(display);
// If I comment this, it will become rectangle.
glutReshapeFunc(Reshape);
init();

 glutMainLoop();


}

1 个答案:

答案 0 :(得分:2)

您的问题与gluOrtho2D (...)的使用有关。如果要保留纵横比,则需要根据窗口的尺寸定义投影矩阵。

我建议你在重塑功能中这样做:

GLdouble aspect = (GLdouble)w / (GLdouble)h;

glMatrixMode   (GL_PROJECTION);
glLoadIdentity ();

gluOrtho2D     (-1.0 * aspect, 1.0 * aspect, -1.0, 1.0);

glMatrixMode   (GL_MODELVIEW);

glViewport     (0, 0, w, h);