home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program DrawPoints;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel;
-
- var
- I : integer;
-
- begin
- InitGraphic; { Initialize the system and screen }
- DrawBorder;
- for I := 1 to 1000 do
- { Plot random pixels on the screen }
- DrawPoint(Random(XScreenMaxGlb), Random(YMaxGlb));
- repeat until KeyPressed; { Wait until a key is pressed }
- LeaveGraphic;
- end. { DrawPoints }