home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program OneAxis;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel, GWindow, GShell;
-
- procedure OneAxisDem;
- begin
- ClearScreen; { Init screen }
- SetColorWhite;
- SetBackground(0);
-
- DefineHeader(1, 'LABELED AXES'); { Define the window }
- SetHeaderOn;
- DefineWorld(1, -10, -10, 10, 10);
- SelectWindow(1);
- SelectWorld(1);
-
- DrawBorder; { Draw it }
-
- DrawAxis(8, -7, 0, 0, 0, 0, 0, 0, true); { Draw coordinate axis }
- end; { OneAxisDem }
-
- begin
- InitGraphic; { Initialize the graphics system }
-
- OneAxisDem; { Do the demo }
-
- repeat until KeyPressed; { Wait until a key is pressed }
-
- LeaveGraphic; { Leave the graphics system }
- end. { OneAxis }
-