better triangle Z coords

This commit is contained in:
Brian 2007-06-25 09:41:49 -06:00
parent c2577bb1a0
commit 05b2297bef

View file

@ -51,9 +51,9 @@ static void drawLeftTriangle(void)
/* draw yellow triangle on LHS of screen */
glBegin (GL_TRIANGLES);
glColor4f(1.0, 1.0, 0.0, 0.75);
glVertex3f(0.1, 0.9, 0.0);
glVertex3f(0.1, 0.1, 0.0);
glVertex3f(0.7, 0.5, 0.0);
glVertex3f(0.1, 0.9, -1.0);
glVertex3f(0.1, 0.1, -1.0);
glVertex3f(0.8, 0.5, 1.0);
glEnd();
}
@ -63,7 +63,7 @@ static void drawRightTriangle(void)
glBegin (GL_TRIANGLES);
glColor4f(0.0, 1.0, 1.0, 0.75);
glVertex3f(0.9, 0.9, 0.0);
glVertex3f(0.3, 0.5, 0.0);
glVertex3f(0.2, 0.5, 0.0);
glVertex3f(0.9, 0.1, 0.0);
glEnd();
}