home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / xbase / compiler / doobject / bar3d.do < prev    next >
Text File  |  1991-07-24  |  321b  |  12 lines

  1. /*
  2.     demo the BGI 3-D bar graph
  3.     make sure you have defined BGIPATH in your autoexec.bat file !!
  4. */
  5. initGraph(0,0,envSymbol("bgipath"));
  6. bar3d(100,200,250,300,20,1);
  7. bar3d(400,100,500,300,10,1);
  8. outTextXY(100,340,"BGI 3-D Bar Graph");
  9. outTextXY(22,450,"Press any key to continue...");
  10. readchar();
  11. closeGraph();
  12.