如何在OpenGL中更改视角?

时间:2019-07-16 22:03:08

标签: c++ opengl glfw glm-math opengl-compat

我需要创建一个3d多维数据集,到目前为止,我已经创建了所有顶点,但是当我运行该程序时,我只能从一个视图中看到该多维数据集(或者我希望是一个多维数据集,我无法分辨)脸,所以看起来像一个正方形。我想知道如何从上方查看我的多维数据集,所以我可以检查它是否真正符合我的期望。

我使用glVertex3f创建了24个顶点,但是就像我说的那样,我无法分辨它是否是立方体,因为我无法从默认角度以外的角度查看它。

我曾尝试下载GLM,但对于如何使用它来改变观看角度感到非常困惑。

glEnable(GL_DEPTH_TEST);
    // Loop until the user closes the window
    while (!glfwWindowShouldClose(window))
    {
        // Render here
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

        glBegin(GL_QUADS);
        glColor3f(0.0f, 1.0f, 0.0f);
        glVertex3f(0.5f, 0.5f, 0.5f);
        glVertex3f(-0.5f, 0.5f, 0.5f);
        glVertex3f(-0.5f, -0.5f, 0.5f);
        glVertex3f(0.5f, -0.5f, 0.5f);

        ... // Repeating drawing the vertices for each vertex of the cube

        glEnd();

        // Swap front and back buffers
        glfwSwapBuffers(window);

        // Poll for and process events
        glfwPollEvents();
    }

没有错误消息,但我无法确定它是否为多维数据集。

1 个答案:

答案 0 :(得分:1)

    // Render here
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

    // need the window width & height to compute aspect ratio
    int width, height;
    glfwGetWindowSize(window, &width, &height);

    // set up the camera projection (if you haven't done this in init)
    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();
    gluPerspective(45.0f, float(width) / height, 0.1f, 100.0f);

    // set camera position & orientation
    glMatrixMode(GL_MODELVIEW);
    glLoadIdentity();
    gluLookAt(1, 1, -3, //< eye position
              0, 0, 0,  //< aim position
              0, 1, 0); //< up direction

    // now draw stuff
    glBegin(GL_QUADS);
    glEnd();