home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program DrawLineDemo;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel;
-
- begin
- InitGraphic; { Initialize the graphics system }
- DrawBorder;
- DefineWorld(1,0,0,1000,1000); { Define the world to draw in }
- SelectWorld(1); { Select the world }
- SelectWindow(1); { Select the window }
-
- DrawLine(0,0,1000,1000); { Draw the line }
-
- repeat until KeyPressed; { Wait until a key is pressed }
- LeaveGraphic; { Leave the graphics system }
- end. { DrawLineDemo }
-