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

GIS编程

开发平台:

Visual C++

  1. /*   * helicoid (gernalized torus) demo   *  * FUNCTION:  * This code provides a very simple example of the helicoid primitive.  *  * =======> MOUSE HOOKED UP TO SWEEP, HEIGHT < ========  *  * HISTORY:  * Written by Linas Vepstas, March 1995  */ /* required include files */ #include <GL/glut.h> #include <GL/tube.h> #include "texture.h" /*  most recent mouse postion */ extern float lastx; extern float lasty; void InitStuff (void) {} /* draw the helix shape */ void DrawStuff (void) {    glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);    /* set up some matrices so that the object spins with the mouse */    glPushMatrix ();    glTranslatef (0.0, 0.0, -80.0);    glRotatef (220.0, 0.0, 1.0, 0.0);    glRotatef (65.0, 1.0, 0.0, 0.0);    /* Phew. FINALLY, Draw the helix  -- */    gleSetJoinStyle (TUBE_NORM_EDGE | TUBE_JN_ANGLE | TUBE_JN_CAP);    gleHelicoid (1.0, 6.0, -1.0,                 0.0, (0.02*lasty-2.0), 0x0, 0x0, 0.0, 6.0*lastx);    glPopMatrix ();    glutSwapBuffers ();
  2.    glutReportErrors(); } /* ---------------------- end of file ------------------ */