Reputation: 175
I am having a problem with my opengl program. I can only get one cube to display. I am trying to display two cubes and cannot seem to figure out why only one cube display. Can someone tell me why and what I need to do to correct it? The cube function I must use is:
void myCube(double length)
{
double half = length/2;
// face 1
glBegin(GL_POLYGON);
glVertex3d(half, -half, half);
glVertex3d(half, half, half);
glVertex3d(-half, half, half);
glVertex3d(-half, -half, half);
glEnd();
// face 2
glPushMatrix();
glBegin(GL_POLYGON);
glVertex3d(half, -half, -half);
glVertex3d(half, half, -half);
glVertex3d(-half, half, -half);
glVertex3d(-half, -half, -half);
glEnd();
// face 3
glBegin(GL_POLYGON);
glVertex3d(half, half, half);
glVertex3d(half, -half, half);
glVertex3d(half, -half, -half);
glVertex3d(half, half, -half);
glEnd();
// face 4
glBegin(GL_POLYGON);
glVertex3d(-half, -half, half);
glVertex3d(-half, half, half);
glVertex3d(-half, half, -half);
glVertex3d(-half, -half, -half);
glEnd();
// face 5
glBegin(GL_POLYGON);
glVertex3d(half, half, half);
glVertex3d(half, half, -half);
glVertex3d(-half, half, -half);
glVertex3d(-half, half, half);
glEnd();
// face 6
glBegin(GL_POLYGON);
glVertex3d(half, -half, half);
glVertex3d(half, -half, -half);
glVertex3d(-half, -half, -half);
glVertex3d(-half, -half, half);
glEnd();
}
And here is my display function:
void myDisplay(void)
{
//cubeCount = (rand() % 15) + 7;
//int r = rand()%18;
//r = r - 9;
//double rd = (double)r / 2.0;
//glMatrixMode(GL_PROJECTION); // set the view volume shape
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
{
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
//glTranslatef(1.0f, 4.0f, 2.0f);
//double factor = 05;
gluPerspective(60, screenWidth/screenHeight, 0.1, 100);
gluLookAt(3.0, 3.0, -3.0, 3.0, 3.0, 0.0, 0.0, 1.0, 0.0);
//for (int i = 0; i < 5; i++)
//{
glPushMatrix();
glTranslatef(4.9f, 1.2f, 1.0f);
glRotated(45.0, 0.0, 1.0, 0.0);
glColor3d(1, 1, 1); // draw white cube
glEnable(GL_POLYGON_OFFSET_FILL);
glPolygonOffset(1.0, 1.0);
myCube(0.5);
glDisable(GL_POLYGON_OFFSET_FILL);
glColor3d(0, 0, 0); // draw black lines
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
myCube(0.5);
glPopMatrix();
//glFlush();
glPushMatrix();
glTranslatef(2.0f, 4.0f, 2.0f);
glScalef(1.0, 2.0, 1.0);
//glRotated(45.0, 0.0, 1.0, 0.0);
glColor3d(1, 1, 1); // draw white cube
glEnable(GL_POLYGON_OFFSET_FILL);
glPolygonOffset(1.0, 1.0);
myCube(0.5);
glDisable(GL_POLYGON_OFFSET_FILL);
glColor3d(0, 0, 0); // draw black lines
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
myCube(0.5);
glPopMatrix();
//}
}
//glutSwapBuffers();
glFlush();
}
I am getting one cube in the lower left corner of my display but the other cube doesn't show any where. I will upload more code if needed.
Upvotes: 1
Views: 713
Reputation: 52090
Right now you're blowing through your modelview matrix stack with repeated un-matched glPushMatrix()
es.
Take that glPushMatrix()
call out of myCube()
:
...
glVertex3d(-half, -half, half);
glEnd();
// face 2
glPushMatrix();
^^^^^^^^^^^^^^ What's this guy doing here?
Why doesn't it have a matching glPopMatrix()?
glBegin(GL_POLYGON);
glVertex3d(half, -half, -half);
.....
Full code:
#include <GL/glut.h>
void myCube(double length)
{
double half = length/2;
// face 1
glBegin(GL_POLYGON);
glVertex3d(half, -half, half);
glVertex3d(half, half, half);
glVertex3d(-half, half, half);
glVertex3d(-half, -half, half);
glEnd();
// face 2
glBegin(GL_POLYGON);
glVertex3d(half, -half, -half);
glVertex3d(half, half, -half);
glVertex3d(-half, half, -half);
glVertex3d(-half, -half, -half);
glEnd();
// face 3
glBegin(GL_POLYGON);
glVertex3d(half, half, half);
glVertex3d(half, -half, half);
glVertex3d(half, -half, -half);
glVertex3d(half, half, -half);
glEnd();
// face 4
glBegin(GL_POLYGON);
glVertex3d(-half, -half, half);
glVertex3d(-half, half, half);
glVertex3d(-half, half, -half);
glVertex3d(-half, -half, -half);
glEnd();
// face 5
glBegin(GL_POLYGON);
glVertex3d(half, half, half);
glVertex3d(half, half, -half);
glVertex3d(-half, half, -half);
glVertex3d(-half, half, half);
glEnd();
// face 6
glBegin(GL_POLYGON);
glVertex3d(half, -half, half);
glVertex3d(half, -half, -half);
glVertex3d(-half, -half, -half);
glVertex3d(-half, -half, half);
glEnd();
}
void display()
{
glClearColor( 0.3, 0.3, 0.3, 1 );
glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
glMatrixMode( GL_PROJECTION );
glLoadIdentity();
double w = glutGet( GLUT_WINDOW_WIDTH );
double h = glutGet( GLUT_WINDOW_HEIGHT );
gluPerspective( 60, w / h, 0.1, 100 );
glMatrixMode( GL_MODELVIEW );
glLoadIdentity();
gluLookAt(3.0, 3.0, -3.0, 3.0, 3.0, 0.0, 0.0, 1.0, 0.0);
glPushMatrix();
{
glTranslatef(4.9f, 1.2f, 1.0f);
glRotated(45.0, 0.0, 1.0, 0.0);
glColor3d(1, 1, 1);
glPolygonMode( GL_FRONT_AND_BACK, GL_FILL );
glEnable( GL_POLYGON_OFFSET_FILL );
glPolygonOffset( 1.0, 1.0 );
myCube( 0.5 );
glDisable( GL_POLYGON_OFFSET_FILL );
glColor3d(0, 0, 0);
glPolygonMode( GL_FRONT_AND_BACK, GL_LINE );
myCube( 0.5 );
}
glPopMatrix();
glPushMatrix();
{
glTranslatef(2.0f, 4.0f, 2.0f);
glScalef(1.0, 2.0, 1.0);
glColor3d(1, 1, 1);
glPolygonMode( GL_FRONT_AND_BACK, GL_FILL );
glEnable( GL_POLYGON_OFFSET_FILL );
glPolygonOffset( 1.0, 1.0 );
myCube( 0.5 );
glDisable( GL_POLYGON_OFFSET_FILL );
glColor3d(0, 0, 0);
glPolygonMode( GL_FRONT_AND_BACK, GL_LINE );
myCube( 0.5 );
}
glPopMatrix();
glutSwapBuffers();
}
int main( int argc, char **argv )
{
glutInit( &argc, argv );
glutInitDisplayMode( GLUT_RGBA | GLUT_DEPTH | GLUT_DOUBLE );
glutInitWindowSize( 640, 480 );
glutCreateWindow( "GLUT" );
glutDisplayFunc( display );
glutMainLoop();
return 0;
}
Upvotes: 2