home *** CD-ROM | disk | FTP | other *** search
- #include <math.h>
- #include <graph.h>
- #include "worlddr.h"
- #include "segraph.h"
-
- int err,i,j;
- float ContourMap[61][61];
-
- float Calc3DFunction(float x,float y)
- {
- float Calc3DFunctionResult;
- Calc3DFunctionResult = 3.0 * sin(sqrt(x*x+y*y));
- return(Calc3DFunctionResult );
- }
-
- float Calc3DFunction2(float x,float y)
- {
- float Calc3DFunctionResult;
-
- Calc3DFunctionResult = 7.0 * exp(-0.1 *(x*x+y*y));
- return(Calc3DFunctionResult );
-
- }
-
- void CreateFunction(){
- int i,j;
- float x,y,z ;
-
- for ( i = 0; i <= 60; i++ ) {
- x = (i-30)/4.0;
- for ( j = 0; j <= 60; j++ ){
- y = (j-30)/4.0;
- z = Calc3DFunction(x,y);
- ContourMap[i][j] = z;
- }
- }
- }
-
-
- void main(){
-
- int ContourColors[maxContours];
- int ContourHatch[maxContours];
- for ( i = 0; i <= maxContours - 1 ; i++ ){
- ContourColors[i] = (i%15)+ 1;
- ContourHatch[i] = 1;
- }
- CreateFunction();
- InitSEGraphics(6);
-
- for (i = 2; i <= 2; i++){
- SetPercentWindow( 0.05,0.05, 0.95,0.80,4);
- SetPercentWindow( 0.05,0.83,0.95,0.95,3);
-
- SetCurrentWindow(4);
- SetWin2PlotRatio(4, 0.15, 0.15, 0.1, 0.15 );
- BorderCurrentWindow(2);
- SetAxesType(0,0);
- ScalePlotArea( -20.0, -20.0, 20.0, 20.0);
- SelectColor(15);
- SetXYIntercepts(-20.0,-20.0);
- DrawYAxis(1.0,0);
- LabelYAxis(10, 0);
- DrawXAxis(1.0,0);
- LabelXAxis(10,0);
-
- SetXYIntercepts(20.0,20.0);
- DrawYAxis(1.0,1);
- LabelYAxis(10,1);
- DrawXAxis(1.0,1);
- LabelXAxis(10,1);
- TitleWindow("Contour Plot z = Sin(Sqrt(x*x + y*y))");
- TitleXAxis("X Axis Label");
- TitleYAxis("Y Axis Label");
- setlinestyleXX(1,1,1);
- DrawGridX(10);
- DrawGridY(10);
- ContourPlot(&ContourMap[0][0],61,61,1.0, ContourColors,ContourHatch);
- SetCurrentWindow(3);
- BorderCurrentWindow(5);
- ContourPlotLegends(&ContourMap[0][0],61,61,1.0, ContourColors,ContourHatch);
-
- }
- getch();
- CloseSEGraphics();
- }