torus.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:2k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1996. */
  2. /* This program is freely distributable without licensing fees 
  3.    and is provided without guarantee or warrantee expressed or 
  4.    implied. This program is -not- in the public domain. */
  5. #include <string.h>
  6. #include <GL/glut.h>
  7. /* Modify these variables if necessary to control the number of
  8.    iterations for per time sample, the GLUT display mode for the
  9.    window, and the minimum test running time in seconds. */
  10. extern int testIterationsStep, testDisplayMode, testMinimumTestTime;
  11. void
  12. testInit(int argc, char **argv, int width, int height)
  13. {
  14.   static GLfloat light_diffuse[] = {1.0, 0.0, 0.0, 1.0};
  15.   static GLfloat light_position[] = {1.0, 1.0, 1.0, 0.0};
  16.   int solid, i;
  17.   glViewport(0, 0, width, height);
  18.   glMatrixMode(GL_PROJECTION);
  19.   gluPerspective(25.0, width/height, 1.0, 10.0);
  20.   glMatrixMode(GL_MODELVIEW);
  21.   gluLookAt(0.0, 0.0, 5.0,
  22.     0.0, 0.0, 0.0,
  23.     0.0, 1.0, 0.);
  24.   glTranslatef(0.0, 0.0, -1.0);
  25.   glColor3f(1.0, 0.0, 0.0);
  26.   glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse);
  27.   glLightfv(GL_LIGHT0, GL_POSITION, light_position);
  28.   solid = 1;
  29.   for (i = 1; i < argc; i++) {
  30.     if (!strcmp("-light", argv[i])) {
  31.       glEnable(GL_LIGHTING);
  32.       glEnable(GL_LIGHT0);
  33.     } else if (!strcmp("-depth", argv[i])) {
  34.       glEnable(GL_DEPTH_TEST);
  35.     } else if (!strcmp("-wire", argv[i])) {
  36.       solid = 0;
  37.     }
  38.   }
  39.   glNewList(1, GL_COMPILE);
  40.   if (solid) {
  41.     glutSolidTorus(0.25, 0.75, 100, 100);
  42.   } else {
  43.     glutWireTorus(0.25, 0.75, 100, 100);
  44.   }
  45.   glEndList();
  46. }
  47. void
  48. testRender(void)
  49. {
  50.   glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  51.   glCallList(1);
  52. }