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

GIS编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1993-1997, Silicon Graphics, Inc.
  3.  * ALL RIGHTS RESERVED 
  4.  * Permission to use, copy, modify, and distribute this software for 
  5.  * any purpose and without fee is hereby granted, provided that the above
  6.  * copyright notice appear in all copies and that both the copyright notice
  7.  * and this permission notice appear in supporting documentation, and that 
  8.  * the name of Silicon Graphics, Inc. not be used in advertising
  9.  * or publicity pertaining to distribution of the software without specific,
  10.  * written prior permission. 
  11.  *
  12.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  13.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  14.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  15.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  16.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  17.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  18.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  19.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  20.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  21.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  22.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  23.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  24.  * 
  25.  * US Government Users Restricted Rights 
  26.  * Use, duplication, or disclosure by the Government is subject to
  27.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  28.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  29.  * clause at DFARS 252.227-7013 and/or in similar or successor
  30.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  31.  * Unpublished-- rights reserved under the copyright laws of the
  32.  * United States.  Contractor/manufacturer is Silicon Graphics,
  33.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  34.  *
  35.  * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
  36.  */
  37. /*
  38.  *  torus.c
  39.  *  This program demonstrates the creation of a display list.
  40.  */
  41. #include <GL/glut.h>
  42. #include <stdio.h>
  43. #include <math.h>
  44. #include <stdlib.h>
  45. /* Some <math.h> files do not define M_PI... */
  46. #ifndef M_PI
  47. #define M_PI 3.14159265358979323846
  48. #endif
  49. GLuint theTorus;
  50. /* Draw a torus */
  51. static void torus(int numc, int numt)
  52. {
  53.    int i, j, k;
  54.    double s, t, x, y, z, twopi;
  55.    twopi = 2 * (double)M_PI;
  56.    for (i = 0; i < numc; i++) {
  57.       glBegin(GL_QUAD_STRIP);
  58.       for (j = 0; j <= numt; j++) {
  59.          for (k = 1; k >= 0; k--) {
  60.             s = (i + k) % numc + 0.5;
  61.             t = j % numt;
  62.             x = (1+.1*cos(s*twopi/numc))*cos(t*twopi/numt);
  63.             y = (1+.1*cos(s*twopi/numc))*sin(t*twopi/numt);
  64.             z = .1 * sin(s * twopi / numc);
  65.             glVertex3f(x, y, z);
  66.          }
  67.       }
  68.       glEnd();
  69.    }
  70. }
  71. /* Create display list with Torus and initialize state */
  72. static void init(void)
  73. {
  74.    theTorus = glGenLists (1);
  75.    glNewList(theTorus, GL_COMPILE);
  76.    torus(8, 25);
  77.    glEndList();
  78.    glShadeModel(GL_FLAT);
  79.    glClearColor(0.0, 0.0, 0.0, 0.0);
  80. }
  81. /* Clear window and draw torus */
  82. void display(void)
  83. {
  84.    glClear(GL_COLOR_BUFFER_BIT);
  85.    glColor3f (1.0, 1.0, 1.0);
  86.    glCallList(theTorus);
  87.    glFlush();
  88. }
  89. /* Handle window resize */
  90. void reshape(int w, int h)
  91. {
  92.    glViewport(0, 0, (GLsizei) w, (GLsizei) h);
  93.    glMatrixMode(GL_PROJECTION);
  94.    glLoadIdentity();
  95.    gluPerspective(30, (GLfloat) w/(GLfloat) h, 1.0, 100.0);
  96.    glMatrixMode(GL_MODELVIEW);
  97.    glLoadIdentity();
  98.    gluLookAt(0, 0, 10, 0, 0, 0, 0, 1, 0);
  99. }
  100. /* Rotate about x-axis when "x" typed; rotate about y-axis
  101.    when "y" typed; "i" returns torus to original view */
  102. /* ARGSUSED1 */
  103. void keyboard(unsigned char key, int x, int y)
  104. {
  105.    switch (key) {
  106.    case 'x':
  107.    case 'X':
  108.       glRotatef(30.,1.0,0.0,0.0);
  109.       glutPostRedisplay();
  110.       break;
  111.    case 'y':
  112.    case 'Y':
  113.       glRotatef(30.,0.0,1.0,0.0);
  114.       glutPostRedisplay();
  115.       break;
  116.    case 'i':
  117.    case 'I':
  118.       glLoadIdentity();
  119.       gluLookAt(0, 0, 10, 0, 0, 0, 0, 1, 0);
  120.       glutPostRedisplay();
  121.       break;
  122.    case 27:
  123.       exit(0);
  124.       break;
  125.    }
  126. }
  127. int main(int argc, char **argv)
  128. {
  129.    glutInitWindowSize(200, 200);
  130.    glutInit(&argc, argv);
  131.    glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
  132.    glutCreateWindow(argv[0]);
  133.    init();
  134.    glutReshapeFunc(reshape);
  135.    glutKeyboardFunc(keyboard);
  136.    glutDisplayFunc(display);
  137.    glutMainLoop();
  138.    return 0;
  139. }