home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l043 / 3.ddi / ARCCOORD.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-11-02  |  314 b   |  18 lines

  1. uses
  2.   Graph;
  3. var
  4.   Gd, Gm : integer;
  5.   ArcCoords : ArcCoordsType;
  6. begin
  7.   Gd := Detect;
  8.   InitGraph(Gd, Gm, '');
  9.   if GraphResult <> grOk then
  10.     Halt(1);
  11.   Arc(100,100,0,270,30);
  12.   GetArcCoords(ArcCoords);
  13.   with ArcCoords do
  14.     Line(Xstart, Ystart, Xend, Yend);
  15.   Readln;
  16.   CloseGraph;
  17. end.
  18.