home *** CD-ROM | disk | FTP | other *** search
-
- # include <math.h>
- # include <stdlib.h>
- # include <stdio.h>
- # include <graph.h>
- # include "miscio.h"
- # include <string.h>
- # include "asyncxx.h"
- # include "worlddr.h"
- # include "segraph.h"
-
- float xdata[100], ydata[100],xm,ym;
- int prndr, res, orient,ioport,rr,wc,err,i;
- char c;
- int n;
-
- void main()
-
-
- {
-
- for (i = 0; i <= 50; i++ )
- {
- rr = i;
- xdata[i] = (4.0*3.1415* (frandom()-0.5)) ;
- ydata[i] = 1000.0 * sin(xdata[i]);
- }
-
- SortDataX(xdata,ydata,50,0);
- printf( "Enter Printer Drive 0-MX 1-LQ 2-Tosh 3-HPLJ 4-HPINK 5-FX ");
- scanf( "%d",&prndr );
- printf("Input IO Port ");
- scanf( "%d",&ioport );
- printf("Input resolution " );
- scanf( "%d", &res );
- printf("Input xmult ");
- scanf( "%f",&xm );
- printf("Input ymult " );
- scanf( "%f",&ym );
- printf("Input orientatation 0-portrait 1-landscape " );
- scanf( "%d",&orient );
-
-
-
-
- /****************************************************
- - 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);
-
- wc = 1;
- SetCurrentWindow(wc);
- ClearWindow();
- SetAxesType(0,0);
- SelectColor(7);
- ScalePlotArea(0.0, 150.0, 99.0,300.0);
- SetXYIntercepts(0.0,150.0);
- AutoAxes(xdata,ydata,50,0);
- DrawGrid(5);
- SelectColor(4);
- LinePlotData(xdata, ydata, 50, 1,0);
- SelectColor(1);
- TitleWindow("Hair Growth Study");
- TitleXAxis("Before/After Injections");
- TitleYAxis("Hair inches/wk.");
- /* BE SURE YOU DO NOT CALL CLEARWINDOW BEFORE
- YOU ATTEMPT A SCREEN DUMP */
- if (ioport == 2){
- open_com(0,9600,0,1,8, &err);
- }
-
- ScreenDump(prndr,ioport,res,xm,ym,0,orient,0,&err);
- ClearWindow();
-
- CloseSEGraphics();
-
- }