updated
git-svn-id: svn://anubis/misc/opengl@81 bd8a9e45-a331-0410-811e-c64571078777
This commit is contained in:
parent
07b6e80e7b
commit
0b030e341f
@ -1,3 +1,4 @@
|
||||
|
||||
#include <GL/gl.h>
|
||||
#include <GL/glu.h>
|
||||
#include <GL/glut.h>
|
||||
@ -6,71 +7,71 @@ float r = 0.0;
|
||||
|
||||
void init(void)
|
||||
{
|
||||
glClearColor (0.0, 0.0, 0.0, 0.0);
|
||||
glShadeModel (GL_FLAT);
|
||||
glClearColor (0.0, 0.0, 0.0, 0.0);
|
||||
glShadeModel (GL_FLAT);
|
||||
}
|
||||
|
||||
void idle(void)
|
||||
{
|
||||
r += 0.2;
|
||||
glutPostRedisplay();
|
||||
r += 0.02;
|
||||
glutPostRedisplay();
|
||||
}
|
||||
|
||||
void drawcubes(int level, double size)
|
||||
{
|
||||
glutWireCube(size);
|
||||
if (!level)
|
||||
return;
|
||||
double a = 0.0;
|
||||
int i;
|
||||
for (i = 0; i < 4; i++)
|
||||
{
|
||||
glPushMatrix();
|
||||
glRotatef(a, 0.0, 1.0, 0.0);
|
||||
glTranslatef(size * 0.375, size * 0.625, size * 0.375);
|
||||
glRotatef(r, 0.0, 1.0, 0.0);
|
||||
drawcubes(level - 1, size * 0.25);
|
||||
glPopMatrix();
|
||||
a += 90.0;
|
||||
}
|
||||
glutWireCube(size);
|
||||
if (!level)
|
||||
return;
|
||||
double a = 0.0;
|
||||
int i;
|
||||
for (i = 0; i < 4; i++)
|
||||
{
|
||||
glPushMatrix();
|
||||
glRotatef(a, 0.0, 1.0, 0.0);
|
||||
glTranslatef(size * 0.375, size * 0.625, size * 0.375);
|
||||
glRotatef(r, 0.0, 1.0, 0.0);
|
||||
drawcubes(level - 1, size * 0.25);
|
||||
glPopMatrix();
|
||||
a += 90.0;
|
||||
}
|
||||
}
|
||||
|
||||
void display(void)
|
||||
{
|
||||
glClear (GL_COLOR_BUFFER_BIT);
|
||||
glColor3f (1.0, 1.0, 1.0);
|
||||
glLoadIdentity (); /* clear the matrix */
|
||||
/* viewing transformation */
|
||||
glTranslatef(0.0, -1.0, -5.0);
|
||||
glRotatef(40.0, 1.0, 0.0, 0.0);
|
||||
glRotatef(r, 0.0, 1.0, 0.0);
|
||||
glClear (GL_COLOR_BUFFER_BIT);
|
||||
glColor3f (1.0, 1.0, 1.0);
|
||||
glLoadIdentity (); /* clear the matrix */
|
||||
/* viewing transformation */
|
||||
glTranslatef(0.0, -1.0, -5.0);
|
||||
glRotatef(40.0, 1.0, 0.0, 0.0);
|
||||
glRotatef(r, 0.0, 1.0, 0.0);
|
||||
|
||||
drawcubes(4, 2.0);
|
||||
drawcubes(4, 2.0);
|
||||
|
||||
glFlush ();
|
||||
glutSwapBuffers();
|
||||
glFlush ();
|
||||
glutSwapBuffers();
|
||||
}
|
||||
|
||||
void reshape (int w, int h)
|
||||
{
|
||||
glViewport (0, 0, (GLsizei) w, (GLsizei) h);
|
||||
glMatrixMode (GL_PROJECTION);
|
||||
glLoadIdentity ();
|
||||
gluPerspective(60.0, 4.0/3.0, 1.5, 20.0);
|
||||
glMatrixMode (GL_MODELVIEW);
|
||||
glViewport (0, 0, (GLsizei) w, (GLsizei) h);
|
||||
glMatrixMode (GL_PROJECTION);
|
||||
glLoadIdentity ();
|
||||
gluPerspective(60.0, 4.0/3.0, 1.5, 20.0);
|
||||
glMatrixMode (GL_MODELVIEW);
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
glutInit(&argc, argv);
|
||||
glutInitDisplayMode (GLUT_DOUBLE | GLUT_RGB);
|
||||
glutInitWindowSize (800, 600);
|
||||
glutInitWindowPosition (-1, -1);
|
||||
glutCreateWindow (argv[0]);
|
||||
init ();
|
||||
glutDisplayFunc(display);
|
||||
glutReshapeFunc(reshape);
|
||||
glutIdleFunc(idle);
|
||||
glutMainLoop();
|
||||
return 0;
|
||||
glutInit(&argc, argv);
|
||||
glutInitDisplayMode (GLUT_DOUBLE | GLUT_RGB);
|
||||
glutInitWindowSize (800, 600);
|
||||
glutInitWindowPosition (-1, -1);
|
||||
glutCreateWindow (argv[0]);
|
||||
init ();
|
||||
glutDisplayFunc(display);
|
||||
glutReshapeFunc(reshape);
|
||||
glutIdleFunc(idle);
|
||||
glutMainLoop();
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user