home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InterCD 2000 August
/
augusty_2000.iso
/
Windows-CE
/
Applications
/
basice
/
FILLRECT.UTL
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1997-07-08
|
296 b
|
9 lines
procedure fillrect( x1%,y1%,x2%,y2%)
print "R";chr$(shift%(x1%,-6)+1);chr$((x1% and 63)+1);\
chr$(shift%(y1%,-6)+1);chr$((y1% and 63)+1);
print chr$(shift%(x2%,-6)+1);chr$((x2% and 63)+1);\
chr$(shift%(y2%,-6)+1);chr$((y2% and 63)+1);
endproc