home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
- # include <stdlib.h>
- # include <stdio.h>
- # include <string.h>
- # include <graph.h>
- # include "asyncxx.h"
- # include "worlddr.h"
- # include "segraph.h"
-
- int wc,i;
- float rr,xdata[100], ydata[100];
- int n;
-
-
- float frand()
- { float r;
- int i;
- i = rand();
- r = i;
- r = r / 32767.0;
- return(r);
- }
-
-
- void main()
-
- {
-
- n = 20;
- for (i = 0; i<= n-1; i++ )
- {
- xdata[i] = (4.0*3.1415* (frand()-0.5));
- ydata[i] = 30.0+ i - xdata[i] * xdata[i] * frand();
-
- }
-
- /****************************************************
- - IF YOU WANT TO CONFIGURE FOR CGA 4 COLORS
- CHOOSE InitSEGraphics(1);
- - HERCULES SUPPORT IS NOW INCLUDED IN MICROSOFT
- C VERSION 5.1. IF YOU WANT TO USE THE
- HERCULES DRIVER YOU MUST FIRST INSTALL
- MSHERC.COM FROM DOS BY TYPING
- msherc<enter>
- THEN IN YOUR MAIN PROGRAM CALL
- InitSEGraphics(12);
- - REFER TO THE README.DOC FILE - PART 3
- INCLUDED IN YOUR MICROSOFT C 5.1 COMPILER
- FOR DETAILS ON ADDED HERCULES SUPPORT.
- **************************************************/
-
- InitSEGraphics(6);
- settextstyleXX( 0, 0,1 );
- for (wc = 1; wc <= 10; wc++ )
- {
- SelectColor(wc);
- SetCurrentWindow(wc);
- ClearWindow();
-
- SetAxesType(0,0);
- ScalePlotArea( -6.0, 0.0, 7.0, 50.0 );
- SetXYIntercepts(0.0,0.0);
- DrawYAxis( 1.0, 0);
- LabelYAxis(10.0,0);
- DrawXAxis(1.0,0);
- LabelXAxis( 2.0,0 );
- BorderCurrentWindow(wc);
- ScatterPlotData(xdata, ydata, n,2, 2);
- SelectColor(4);
- TitleWindow("Roach Study");
- TitleXAxis("Radiation exposure");
- TitleYAxis("Pop. 10^6");
- getch();
- ClearWindow();
-
- SetCurrentWindow(wc);
- AutoAxes(xdata,ydata,n,1);
- ScatterPlotData(xdata, ydata, n, 2, 1);
- DrawGridY(5);
- DrawGridX(5);
- SelectColor(4);
- TitleWindow("Roach Study");
- TitleXAxis("Radiation exposure");
- TitleYAxis("Pop. 10^6");
- getch();
- ClearWindow();
- }
- CloseSEGraphics();
- }
-
-
-
-
-
-
-
-
-
-
-
-
-