home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program Sample;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel;
-
- begin
- InitGraphic; { Initialize the graphics system }
-
-
- DrawBorder; { Draw a border around the drawing }
- { area of the primary window }
- { (the dimensions of the primary window }
- { default to 640x200 points) }
-
-
- DrawLine(10, 10, 600, 180); { Draw a line }
-
- DrawSquare(10, 10, 600, 180, false); { Draw a square }
-
- DrawLine(-100, -20, 750, 320); { Draw a line to demonstrate clipping }
-
- repeat until KeyPressed; { Hold screen until key is pressed }
-
- LeaveGraphic; { Leave the graphics system }
- end. { Sample }