home *** CD-ROM | disk | FTP | other *** search
- const x_max = 640;
- y_max = 400;
-
- procedure EnterGraphic;
- begin
- ClrScr; Write(#27,'f')
- end; (* of EnterGraphic *)
-
- procedure LeaveGraphic;
- begin
- ClrScr; Write(#27,'e')
- end; (* of LeaveGraphic *)
-
- procedure Plot (x, y: integer);
- begin
- InLine($2A/x/$EB/$2A/y/$CD/$5A/$FC/$EA/$BB)
- end; (* of Plot *)
-
- procedure Draw (x, y: integer);
- begin
- InLine($2A/x/$EB/$2A/y/$CD/$5A/$FC/$F6/$BB)
- end; (* of Draw *)
-
- procedure Line (x1, y1, x2, y2: integer);
- begin
- Plot(x1, y1); Draw(x2,y2)
- end; (* of Line *)
-
- procedure WriteChar (x, y: integer; c: char);
- begin
- InLine($2A/x/$EB/$2A/y/$CD/$5A/$FC/$C0/$BB);
- InLine($3A/c/$CD/$5A/$FC/$FC/$BB)
- end; (* of WriteChar *)
-