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

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1995. */
  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. /* molehill uses the GLU NURBS routines to draw some nice surfaces. */
  6. #include <GL/glut.h>
  7. GLfloat mat_red_diffuse[] = { 0.7, 0.0, 0.1, 1.0 };
  8. GLfloat mat_green_diffuse[] = { 0.0, 0.7, 0.1, 1.0 };
  9. GLfloat mat_blue_diffuse[] = { 0.0, 0.1, 0.7, 1.0 };
  10. GLfloat mat_yellow_diffuse[] = { 0.7, 0.8, 0.1, 1.0 };
  11. GLfloat mat_specular[] = { 1.0, 1.0, 1.0, 1.0 };
  12. GLfloat mat_shininess[] = { 100.0 };
  13. GLfloat knots[8] = { 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0 };
  14. GLfloat pts1[4][4][3], pts2[4][4][3];
  15. GLfloat pts3[4][4][3], pts4[4][4][3];
  16. GLUnurbsObj *nurb;
  17. int u, v;
  18. static void 
  19. display(void)
  20. {
  21.   glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  22.   glCallList(1);
  23.   glFlush();
  24. }
  25. int 
  26. main(int argc, char **argv)
  27. {
  28.   glutInit(&argc, argv);
  29.   glutCreateWindow("molehill");
  30.   glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular);
  31.   glMaterialfv(GL_FRONT, GL_SHININESS, mat_shininess);
  32.   glEnable(GL_LIGHTING);
  33.   glEnable(GL_LIGHT0);
  34.   glEnable(GL_DEPTH_TEST);
  35.   glEnable(GL_AUTO_NORMAL);
  36.   glEnable(GL_NORMALIZE);
  37.   nurb = gluNewNurbsRenderer();
  38.   gluNurbsProperty(nurb, GLU_SAMPLING_TOLERANCE, 25.0);
  39.   gluNurbsProperty(nurb, GLU_DISPLAY_MODE, GLU_FILL);
  40.   /* Build control points for NURBS mole hills. */
  41.   for(u=0; u<4; u++) {
  42.     for(v=0; v<4; v++) {
  43.       /* Red. */
  44.       pts1[u][v][0] = 2.0*((GLfloat)u);
  45.       pts1[u][v][1] = 2.0*((GLfloat)v);
  46.       if((u==1 || u == 2) && (v == 1 || v == 2))
  47. /* Stretch up middle. */
  48. pts1[u][v][2] = 6.0;
  49.       else
  50. pts1[u][v][2] = 0.0;
  51.       /* Green. */
  52.       pts2[u][v][0] = 2.0*((GLfloat)u - 3.0);
  53.       pts2[u][v][1] = 2.0*((GLfloat)v - 3.0);
  54.       if((u==1 || u == 2) && (v == 1 || v == 2))
  55. if(u == 1 && v == 1) 
  56.   /* Pull hard on single middle square. */
  57.   pts2[u][v][2] = 15.0;
  58. else
  59.   /* Push down on other middle squares. */
  60.   pts2[u][v][2] = -2.0;
  61.       else
  62. pts2[u][v][2] = 0.0;
  63.       /* Blue. */
  64.       pts3[u][v][0] = 2.0*((GLfloat)u - 3.0);
  65.       pts3[u][v][1] = 2.0*((GLfloat)v);
  66.       if((u==1 || u == 2) && (v == 1 || v == 2))
  67. if(u == 1 && v == 2)
  68.   /* Pull up on single middple square. */
  69.   pts3[u][v][2] = 11.0;
  70. else
  71.   /* Pull up slightly on other middle squares. */
  72.   pts3[u][v][2] = 2.0;
  73.       else
  74. pts3[u][v][2] = 0.0;
  75.       /* Yellow. */
  76.       pts4[u][v][0] = 2.0*((GLfloat)u);
  77.       pts4[u][v][1] = 2.0*((GLfloat)v - 3.0);
  78.       if((u==1 || u == 2 || u == 3) && (v == 1 || v == 2))
  79. if(v == 1) 
  80.   /* Push down front middle and right squares. */
  81.   pts4[u][v][2] = -2.0;
  82. else
  83.   /* Pull up back middle and right squares. */
  84.   pts4[u][v][2] = 5.0;
  85.       else
  86. pts4[u][v][2] = 0.0;
  87.     }
  88.   }
  89.   /* Stretch up red's far right corner. */
  90.   pts1[3][3][2] = 6;
  91.   /* Pull down green's near left corner a little. */
  92.   pts2[0][0][2] = -2;
  93.   /* Turn up meeting of four corners. */
  94.   pts1[0][0][2] = 1;
  95.   pts2[3][3][2] = 1;
  96.   pts3[3][0][2] = 1;
  97.   pts4[0][3][2] = 1;
  98.   glMatrixMode(GL_PROJECTION);
  99.   gluPerspective(55.0, 1.0, 2.0, 24.0);
  100.   glMatrixMode(GL_MODELVIEW);
  101.   glTranslatef(0.0, 0.0, -15.0);
  102.   glRotatef(330.0, 1.0, 0.0, 0.0);
  103.   glNewList(1, GL_COMPILE);
  104.     /* Render red hill. */
  105.     glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_red_diffuse);
  106.     gluBeginSurface(nurb);
  107.       gluNurbsSurface(nurb, 8, knots, 8, knots,
  108.         4 * 3, 3, &pts1[0][0][0],
  109.         4, 4, GL_MAP2_VERTEX_3);
  110.     gluEndSurface(nurb);
  111.     /* Render green hill. */
  112.     glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_green_diffuse);
  113.     gluBeginSurface(nurb);
  114.       gluNurbsSurface(nurb, 8, knots, 8, knots,
  115.         4 * 3, 3, &pts2[0][0][0],
  116.         4, 4, GL_MAP2_VERTEX_3);
  117.     gluEndSurface(nurb);
  118.     /* Render blue hill. */
  119.     glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_blue_diffuse);
  120.     gluBeginSurface(nurb);
  121.       gluNurbsSurface(nurb, 8, knots, 8, knots,
  122.         4 * 3, 3, &pts3[0][0][0],
  123.         4, 4, GL_MAP2_VERTEX_3);
  124.     gluEndSurface(nurb);
  125.     /* Render yellow hill. */
  126.     glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_yellow_diffuse);
  127.     gluBeginSurface(nurb);
  128.       gluNurbsSurface(nurb, 8, knots, 8, knots,
  129.         4 * 3, 3, &pts4[0][0][0],
  130.         4, 4, GL_MAP2_VERTEX_3);
  131.     gluEndSurface(nurb);
  132.   glEndList();
  133.   glutDisplayFunc(display);
  134.   glutMainLoop();
  135.   return 0;             /* ANSI C requires main to return int. */
  136. }