home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD 60
/
supercd60_2.iso
/
BlitzBasic
/
Blitz2DPCP
/
data1.cab
/
Support
/
help
/
samples
/
simple_graphics.bb
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-11-21
|
310 b
|
19 lines
;simple graphics example
; Verified 1.48 4/18/2001
;
;hit ESC to exit
;go into graphics mode
Graphics 640,480
;keep looping until ESC hit
While Not KeyDown(1)
;set a random color
Color Rnd(255),Rnd(255),Rnd(255)
;draw a random rectangle
Rect Rnd(640),Rnd(480),Rnd(32),Rnd(32)
Wend