glBegin和glPushMatrix

glBegin和glPushMatrix

我试图设计一个场景有3个球体和一条水平线作为赤道。我得画三个球,但我不知道为什么这条线不画。
这是我的密码,如果你能看出我错在哪里:

#include <GL/gl.h>
#include <GL/glut.h>

void render(void);

void reshape(int w, int h);

int angle = 90;

int main(int argc, char **argv) {
  glutInit(&argc, argv);
  glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
  glutInitWindowPosition(50, 50);
  glutInitWindowSize(800, 600);
  glutCreateWindow("Planets");

  glutDisplayFunc(render);
  glutReshapeFunc(reshape);

  glutMainLoop();
  return 0;
}


void render(void) {
  glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  glClearColor(0, 0, 0, 1);

  // Equator
  glBegin(GL_LINES);
  glColor3f(1,1,1);
  glLineWidth(1);
  glTranslated(0, 0, 0);
  glVertex2f(0, 2);
  glVertex2f(2,2);
  glEnd();

  // Sun
  glPushMatrix();
  glLoadIdentity();
  glColor3f(1.0, 1.0, 0.0);
  glTranslated(0, 0, -2);
  glRotated(angle, 1, 0, 0);
  glutWireSphere(.3, 20, 20);
  glPopMatrix();

  //Earth
  glPushMatrix();
  glLoadIdentity();
  glColor3f(0.0, 0.0, 1.0);
  glTranslated(0.7, 0, -2);
  glRotated(angle, 1, 0, 0);
  glutWireSphere(.15, 20, 20);
  glPopMatrix();

  // Moon
  glPushMatrix();
  glLoadIdentity();
  glColor3f(1.0, 0.0, 1.0);
  glTranslated(1, 0, -2);
  glRotated(angle, 1, 0, 0);
  glutWireSphere(.05, 10, 10);
  glPopMatrix();

  glutSwapBuffers();
}

void reshape(int w, int h) {
  const double ar = (double) w / (double) h;
  glViewport(0, 0, (GLsizei) w, (GLsizei) h);
  glMatrixMode(GL_PROJECTION);
  glLoadIdentity();
  glFrustum(-ar, ar, -1.0, 1.0, 2.0, 100.0);

  glMatrixMode(GL_MODELVIEW);
  glLoadIdentity();
}

最佳答案

指定一个截头台,该截头台的近剪裁平面为z=-2。您想要的线将在z=0处绘制,因此在投影体积之外,因此剪裁为非渲染。
glTranslate(0,0,0)是一个禁止操作的BTW。

关于c - OpenGL glBegin和glPushMatrix,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34343735/

10-13 08:10