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

  1. uses
  2.   Graph;
  3. var
  4.   Gd, Gm : integer;
  5.   y0, y1, y2, x1, x2 : integer;
  6. begin
  7.   Gd := Detect;
  8.   InitGraph(Gd, Gm, '');
  9.   if GraphResult <> grOk then
  10.     Halt(1);
  11.   y0 := 10;
  12.   y1 := 60;
  13.   y2 := 110;
  14.   x1 := 10;
  15.   x2 := 50;
  16.   Bar3D(x1, y0, x2, y1, 10, TopOn);
  17.   Bar3D(x1, y1, x2, y2, 10, TopOff);
  18.   Readln;
  19.   CloseGraph;
  20. end.