home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program DrawLines;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel;
-
- var
- I : integer;
-
- begin
- InitGraphic; { Init the system and screen }
-
- DefineWorld(1,0,0,1000,1000); { Define a world for drawing }
- SelectWorld(1); { Select it }
- SelectWindow(1);
-
- SetBackground(0); { Set the background color to black }
- DrawBorder;
-
- for I := 1 to 20 do { Draw twenty lines }
- DrawLine(I*50, 0, 1000-I*50, I*50);
-
- repeat until KeyPressed; { Wait until a key is pressed }
- LeaveGraphic;
- end. { DrawLines }