home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program DrawSquares;
-
- {$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);
- DrawBorder;
-
- for I := 1 to 20 do { Draw twenty squares }
- DrawSquare(500-I*25, 500-I*25, 500+I*25, 500+I*25, false);
-
- repeat until KeyPressed; { Wait until a key is pressed }
- LeaveGraphic;
- end. { DrawSquares }