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

  1. uses
  2.   Graph;
  3. const
  4.   Radius = 30;
  5. var
  6.   Gd, Gm : integer;
  7.  
  8. begin
  9.   Gd := Detect;
  10.   InitGraph(Gd, Gm, '');
  11.   if GraphResult <> grOk then
  12.     Halt(1);
  13.   PieSlice(100, 100, 0, 270, Radius);
  14.   Readln;
  15.   CloseGraph;
  16. end.