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

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1994. */
  2. /**
  3.  * (c) Copyright 1993, 1994, Silicon Graphics, Inc.
  4.  * ALL RIGHTS RESERVED 
  5.  * Permission to use, copy, modify, and distribute this software for 
  6.  * any purpose and without fee is hereby granted, provided that the above
  7.  * copyright notice appear in all copies and that both the copyright notice
  8.  * and this permission notice appear in supporting documentation, and that 
  9.  * the name of Silicon Graphics, Inc. not be used in advertising
  10.  * or publicity pertaining to distribution of the software without specific,
  11.  * written prior permission. 
  12.  *
  13.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  14.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  15.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  16.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  17.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  18.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  19.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  20.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  21.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  22.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  23.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  24.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  25.  * 
  26.  * US Government Users Restricted Rights 
  27.  * Use, duplication, or disclosure by the Government is subject to
  28.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  29.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  30.  * clause at DFARS 252.227-7013 and/or in similar or successor
  31.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  32.  * Unpublished-- rights reserved under the copyright laws of the
  33.  * United States.  Contractor/manufacturer is Silicon Graphics,
  34.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  35.  *
  36.  * OpenGL(TM) is a trademark of Silicon Graphics, Inc.
  37.  */
  38. /*----------------------------------------------------------------------------
  39.  *
  40.  * oclip.c : openGL (motif) example showing how to use arbitrary clipping plane.
  41.  *
  42.  * Author : Yusuf Attarwala
  43.  *          SGI - Applications
  44.  * Date   : Mar 93
  45.  *
  46.  *    note : the main intent of this program is to demo the arbitrary
  47.  *           clipping functionality, hence the rendering is kept
  48.  *           simple (wireframe) and only one clipping plane is used.
  49.  *
  50.  *    press  left   button to move object 
  51.  *           right  button to move clipping plane
  52.  *
  53.  *
  54.  *---------------------------------------------------------------------------*/
  55. #include <stdio.h>
  56. #include <stdlib.h>
  57. #include <GL/glut.h>
  58. /* function declarations */
  59. void
  60.   drawScene(void), setMatrix(void), animateClipPlane(void), animation(void),
  61.   resize(int w, int h), keyboard(unsigned char c, int x, int y);
  62. /* global variables */
  63. float ax, ay, az;       /* angles for animation */
  64. GLUquadricObj *quadObj; /* used in drawscene */
  65. GLdouble planeEqn[] =
  66. {0.707, 0.707, 0.0, 0.0};  /* initial clipping plane eqn */
  67. int count = 0;
  68. int clip_count = 0;
  69. void
  70. menu(int choice)
  71. {
  72.   switch (choice) {
  73.   case 1:
  74.     count = 90;
  75.     glutIdleFunc(animation);
  76.     break;
  77.   case 2:
  78.     animateClipPlane();
  79.     break;
  80.   }
  81. }
  82. int
  83. main(int argc, char **argv)
  84. {
  85.   glutInit(&argc, argv);
  86.   quadObj = gluNewQuadric();  /* this will be used in drawScene 
  87.                                */
  88.   glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE);
  89.   glutCreateWindow("Arbitrary clip plane");
  90.   ax = 10.0;
  91.   ay = -10.0;
  92.   az = 0.0;
  93.   glutDisplayFunc(drawScene);
  94.   glutReshapeFunc(resize);
  95.   glutKeyboardFunc(keyboard);
  96.   glutCreateMenu(menu);
  97.   glutAddMenuEntry("Rotate", 1);
  98.   glutAddMenuEntry("Move clip plane", 2);
  99.   glutAttachMenu(GLUT_RIGHT_BUTTON);
  100.   glutMainLoop();
  101.   return 0;             /* ANSI C requires main to return int. */
  102. }
  103. void
  104. drawScene(void)
  105. {
  106.   glClearColor(0.0, 0.0, 0.0, 0.0);
  107.   glClear(GL_COLOR_BUFFER_BIT);
  108.   glPushMatrix();
  109.   gluQuadricDrawStyle(quadObj, GLU_LINE);
  110.   glColor3f(1.0, 1.0, 0.0);
  111.   glRotatef(ax, 1.0, 0.0, 0.0);
  112.   glRotatef(-ay, 0.0, 1.0, 0.0);
  113.   glClipPlane(GL_CLIP_PLANE0, planeEqn);  /* define clipping
  114.                                              plane */
  115.   glEnable(GL_CLIP_PLANE0);  /* and enable it */
  116.   gluCylinder(quadObj, 2.0, 5.0, 10.0, 20, 8);  /* draw a cone */
  117.   glDisable(GL_CLIP_PLANE0);
  118.   glPopMatrix();
  119.   glutSwapBuffers();
  120. }
  121. void
  122. setMatrix(void)
  123. {
  124.   glMatrixMode(GL_PROJECTION);
  125.   glLoadIdentity();
  126.   glOrtho(-15.0, 15.0, -15.0, 15.0, -10.0, 10.0);
  127.   glMatrixMode(GL_MODELVIEW);
  128.   glLoadIdentity();
  129. }
  130. void
  131. animation(void)
  132. {
  133.   if (count) {
  134.     ax += 5.0;
  135.     ay -= 2.0;
  136.     az += 5.0;
  137.     if (ax >= 360)
  138.       ax = 0.0;
  139.     if (ay <= -360)
  140.       ay = 0.0;
  141.     if (az >= 360)
  142.       az = 0.0;
  143.     glutPostRedisplay();
  144.     count--;
  145.   }
  146.   if (clip_count) {
  147.     static int sign = 1;
  148.     planeEqn[3] += sign * 0.5;
  149.     if (planeEqn[3] > 4.0)
  150.       sign = -1;
  151.     else if (planeEqn[3] < -4.0)
  152.       sign = 1;
  153.     glutPostRedisplay();
  154.     clip_count--;
  155.   }
  156.   if (count <= 0 && clip_count <= 0)
  157.     glutIdleFunc(NULL);
  158. }
  159. void
  160. animateClipPlane(void)
  161. {
  162.   clip_count = 5;
  163.   glutIdleFunc(animation);
  164. }
  165. /* ARGSUSED1 */
  166. void
  167. keyboard(unsigned char c, int x, int y)
  168. {
  169.   switch (c) {
  170.   case 27:
  171.     exit(0);
  172.     break;
  173.   default:
  174.     break;
  175.   }
  176. }
  177. void
  178. resize(int w, int h)
  179. {
  180.   glViewport(0, 0, w, h);
  181.   setMatrix();
  182. }