翻译openGL中的茶壶

时间:2012-12-09 21:54:18

标签: c++ opengl graphics 3d

以下是我的重塑函数的最后一个代码:

    glMatrixMode(GL_MODELVIEW);
        glLoadIdentity();
        gluLookAt(0,0,-10,
                  0,0,0,
                  0,1,0);

}

这是我的显示功能:

glPushMatrix();
glTranslatef(0,5,0);
glutSolidTeapot(2);
glPopMatrix();

Teapot's Top将崩溃,它似乎围绕x轴向后旋转?为什么我得到这个? 我怎样才能在没有任何崩溃的情况下翻译茶壶?

enter image description here

0 个答案:

没有答案