home *** CD-ROM | disk | FTP | other *** search
- program dpa;
-
- {$i typedef.sys}
- {$i graphix.sys}
- {$i kernel.sys}
- {$i windows.sys}
- {$i axis.hgh}
- {$i modpoly.hgh}
- {$i polygon.hgh}
-
- {type
- plottype=record
- P1,P2,P3,P4,P5,P6,P7,P8,P9,V1,V2,V3,V4,V5,F1,F2,F3,F4,F5,F6,F7:real;
- end; }
-
- var
- n,i,n1,n2,n3:integer;
- filename:string[20];
- plotfile:text;
- { plot:plottype;
- dt,fx,fy:real; }
- a:plotarray;
- f:real;
-
- begin
-
- Initgraphic;
- { write('The number of vertices of polygon:');
- readln(n); }
- { write('The starting beat:');
- readln(n1);
- n3:=(n1-1)*85+1;}
- { write('Time interval:');
- readln(dt); }
- { dt:=0.01; }
- { write('Enter coefficients fx,fy:');
- readln(fx,fy); }
- write('Enter a filename for plot data:');
- readln(filename);
- assign(plotfile,filename);
- reset(plotfile);
- { n2:=1; }
- i:=1;
- while not eof(plotfile) do
- begin
- { with plot do
- begin}
- read(plotfile,f);
- if(i<1000) then begin
- a[i,1]:=(i-1)*0.01;
- a[i,2]:=f;
- i:=i+1
- end;
- { n2:=n2+1 }
- end;
- close(plotfile);
- clearscreen;
- definewindow(1,0,0,Xmaxglb div 2,150 );
- defineheader(1,'Pecp CURVE');
- defineworld(1,0,-1500,10,1500);
- selectworld(1);
- selectwindow(1);
- setbackground(0);
- setheaderon;
- drawborder;
- drawaxis(8,-8,0,0,0,0,-1,-1,false);
- { scalepolygon(a,85,fx,fy);}
- drawpolygon(a,1,398,0,0,0);
- repeat until keypressed;
- { hardcopy(false,6);}
- Leavegraphic
- end.