home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / HIDELINE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-03-12  |  3.3 KB  |  144 lines

  1. # include <math.h>
  2. # include <graph.h>
  3. # include "worlddr.h"
  4. # include <stdio.h>
  5. # include "plot3d.h"
  6. # include "hpplot.h"
  7.  
  8. int  err,i,j;
  9. struct   WorldRect wr;
  10. struct  point3D contourMap[50][50];   /* -15 to 15*/
  11.  
  12. float x,y,z;
  13.  
  14. void DrawFunction(){
  15. int i,j;
  16. struct  point3D pv[5];
  17.  
  18.   for (i = -14; i <= 15; i++)
  19.   {
  20.     for (j = -14; j<= 15; j++)
  21.     {
  22.  
  23.        pv[0].x = contourMap[i-1+15][j-1+15].x;
  24.        pv[0].y = contourMap[i-1+15][j-1+15].y;
  25.        pv[0].z = contourMap[i-1+15][j-1+15].z;
  26.  
  27.        pv[1].x = contourMap[i+15][j-1+15].x;
  28.        pv[1].y = contourMap[i+15][j-1+15].y;
  29.        pv[1].z = contourMap[i+15][j-1+15].z;
  30.  
  31.        pv[2].x = contourMap[i+15][j+15].x;
  32.        pv[2].y = contourMap[i+15][j+15].y;
  33.        pv[2].z = contourMap[i+15][j+15].z;
  34.  
  35.        pv[3].x = contourMap[i-1+15][j+15].x;
  36.        pv[3].y = contourMap[i-1+15][j+15].y;
  37.        pv[3].z = contourMap[i-1+15][j+15].z;
  38.  
  39.        pv[4].x = contourMap[i-1+15][j-1+15].x;
  40.        pv[4].y = contourMap[i-1+15][j-1+15].y;
  41.        pv[4].z = contourMap[i-1+15][j-1+15].z;
  42.        PolyFill3D(pv,1,0,5);
  43.      }
  44.    }
  45. }
  46.  
  47.  
  48. void CreateFunction(){
  49. int  i,j;
  50. int s,t;
  51. float x,y,z;
  52.  
  53.   for (i = -15; i<= 15; i++)  {
  54.     x = i/2.0;
  55.     for (j = -15; j<= 15; j++) {
  56.       y = j/2.0;
  57.       z = 7.0 * exp(-0.1 * (x*x + y*y));
  58.       s = i+15;
  59.       t = j+15;
  60.       contourMap[i+15][j+15].x = x;
  61.       contourMap[i+15][j+15].y = y;
  62.       contourMap[i+15][j+15].z = z;
  63.     }
  64.   }
  65.  
  66. }
  67.  
  68. void Draw3DAxis( float x,float y,float z )
  69. {
  70.   Move3Abs( 0.0,0.0,0.0 );
  71.   Line3Abs( x,0.0,0.0);
  72.   Move3Abs(0.0,0.0,0.0 );
  73.   Line3Abs( 0.0 ,y,0.0 );
  74.   Move3Abs( 0.0,0.0,0.0);
  75.   Line3Abs( 0.0,0.0,z);
  76. }
  77.  
  78. void main(){
  79.  
  80.  
  81.   CreateFunction();
  82.  
  83.    /****************************************************
  84.     - IF YOU WANT TO CONFIGURE FOR CGA 4 COLORS    
  85.       CHOOSE Init3D(1);                            
  86.     - HERCULES SUPPORT IS NOW INCLUDED IN MICROSOFT
  87.       C VERSION 5.1.  IF YOU WANT TO USE THE         
  88.       HERCULES DRIVER YOU MUST FIRST INSTALL       
  89.       MSHERC.COM FROM DOS BY TYPING  
  90.                   msherc<enter>
  91.       THEN IN YOUR MAIN PROGRAM CALL
  92.                   Init3D(12);
  93.     - REFER TO THE README.DOC FILE - PART 3
  94.       INCLUDED IN YOUR MICROSOFT C 5.1 COMPILER 
  95.       FOR DETAILS ON ADDED HERCULES SUPPORT.
  96.  **************************************************/
  97.  
  98.  
  99.  
  100.   tInit3();
  101.   Init3D(6);
  102.   SetWorldCoordinates(-10.0,-10.0,10.0,10.0);
  103.   WorldRotate3(20.0,0);
  104.   WorldRotate3(-45.0,1);
  105.   for (i = 0; i<= 4; i++)
  106.   {
  107.    _clearscreen(_GVIEWPORT);
  108.    SelectColor(i+1);
  109.    switch (i){
  110.  
  111.    case  0: Draw3DAxis(10.0,10.0,10.0);
  112.             break;
  113.    case 1: {
  114.          WorldScale3(0.5,0.5,0.5);
  115.          Draw3DAxis(10.0,10.0,10.0);
  116.        }
  117.          break;
  118.  
  119.   case   2: {
  120.          WorldScale3(2.0,2.0,2.0);
  121.          WorldRotate3(-40.0,0);
  122.          Draw3DAxis(10.0,10.0,10.0);
  123.        }
  124.          break;
  125.   case  3: {
  126.           WorldRotate3(40.0,0);
  127.           WorldTran3(4.0,3.0,2.0);
  128.           Draw3DAxis(10.0,10.0,10.0);
  129.        }
  130.          break;
  131.  case    4: {
  132.           WorldTran3(-4.0,-3.0,-2.0);
  133.           Persp(20.0);
  134.           Draw3DAxis(10.0,10.0,10.0);
  135.        }
  136.       break;
  137.      }
  138.      DrawFunction();
  139.      getch();
  140.    }
  141.   Close3DGraphics();
  142.  
  143. }
  144.