home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
- # include <graph.h>
- # include "worlddr.h"
- # include <stdio.h>
- # include "plot3d.h"
- # include "hpplot.h"
-
- int err,i,j;
- struct WorldRect wr;
- struct point3D contourMap[50][50]; /* -15 to 15*/
-
- float x,y,z;
-
- void DrawFunction(){
- int i,j;
- struct point3D pv[5];
-
- for (i = -14; i <= 15; i++)
- {
- for (j = -14; j<= 15; j++)
- {
-
- pv[0].x = contourMap[i-1+15][j-1+15].x;
- pv[0].y = contourMap[i-1+15][j-1+15].y;
- pv[0].z = contourMap[i-1+15][j-1+15].z;
-
- pv[1].x = contourMap[i+15][j-1+15].x;
- pv[1].y = contourMap[i+15][j-1+15].y;
- pv[1].z = contourMap[i+15][j-1+15].z;
-
- pv[2].x = contourMap[i+15][j+15].x;
- pv[2].y = contourMap[i+15][j+15].y;
- pv[2].z = contourMap[i+15][j+15].z;
-
- pv[3].x = contourMap[i-1+15][j+15].x;
- pv[3].y = contourMap[i-1+15][j+15].y;
- pv[3].z = contourMap[i-1+15][j+15].z;
-
- pv[4].x = contourMap[i-1+15][j-1+15].x;
- pv[4].y = contourMap[i-1+15][j-1+15].y;
- pv[4].z = contourMap[i-1+15][j-1+15].z;
- PolyFill3D(pv,1,0,5);
- }
- }
- }
-
-
- void CreateFunction(){
- int i,j;
- int s,t;
- float x,y,z;
-
- for (i = -15; i<= 15; i++) {
- x = i/2.0;
- for (j = -15; j<= 15; j++) {
- y = j/2.0;
- z = 7.0 * exp(-0.1 * (x*x + y*y));
- s = i+15;
- t = j+15;
- contourMap[i+15][j+15].x = x;
- contourMap[i+15][j+15].y = y;
- contourMap[i+15][j+15].z = z;
- }
- }
-
- }
-
- void Draw3DAxis( float x,float y,float z )
- {
- Move3Abs( 0.0,0.0,0.0 );
- Line3Abs( x,0.0,0.0);
- Move3Abs(0.0,0.0,0.0 );
- Line3Abs( 0.0 ,y,0.0 );
- Move3Abs( 0.0,0.0,0.0);
- Line3Abs( 0.0,0.0,z);
- }
-
- void main(){
-
-
- CreateFunction();
-
- tInit3();
- Init3D(6);
- SetWorldCoordinates(-10.0,-10.0,10.0,10.0);
- WorldRotate3(20.0,0);
- WorldRotate3(-45.0,1);
- for (i = 0; i<= 4; i++)
- {
- _clearscreen(_GVIEWPORT);
- SelectColor(i+1);
- switch (i){
-
- case 0: Draw3DAxis(10.0,10.0,10.0);
- break;
- case 1: {
- WorldScale3(0.5,0.5,0.5);
- Draw3DAxis(10.0,10.0,10.0);
- }
- break;
-
- case 2: {
- WorldScale3(2.0,2.0,2.0);
- WorldRotate3(-40.0,0);
- Draw3DAxis(10.0,10.0,10.0);
- }
- break;
- case 3: {
- WorldRotate3(40.0,0);
- WorldTran3(4.0,3.0,2.0);
- Draw3DAxis(10.0,10.0,10.0);
- }
- break;
- case 4: {
- WorldTran3(-4.0,-3.0,-2.0);
- Persp(20.0);
- Draw3DAxis(10.0,10.0,10.0);
- }
- break;
- }
- DrawFunction();
- getch();
- }
- Close3DGraphics();
-
- }
-