home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program DrawHatch;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel, GWindow, GShell;
-
- var
- I : integer;
- X1, X2, Y1, Y2, Temp : Float;
-
- begin
- Randomize;
- 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 5 do { Draw Random boxes with Random Hatch }
- begin
- X1 := 100 + Random(800);
- X2 := 100 + Random(800);
- Y1 := 100 + Random(800);
- Y2 := 100 + Random(800);
-
- if X1 > X2 then { Swap X's }
- begin
- Temp := X1;
- X1 := X2;
- X2 := Temp;
- end;
-
- if Y1 > Y2 then { Swap Y's }
- begin
- Temp := Y1;
- Y1 := Y2;
- Y2 := Temp;
- end;
-
- DrawSquare(X1, Y1, X2, Y2, false); { Draw a square }
- Hatch(X1, Y1, X2, Y2, Random(22)-11); { Hatch it }
- end;
-
- repeat until KeyPressed; { Wait until a key is pressed }
- LeaveGraphic;
- end. { DrawHatch }