home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Times
/
AmigaTimes.iso
/
demos
/
programme
/
ArtEffect26.demo
/
rexx
/
plot.rexx
< 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
OS/2 REXX Batch file
|
1998-10-06
|
267 b
|
19 lines
/**/
address "ArtEffect"
options results
createbrush rec size 1 prop 100 angle 0
new w 128 h 128
do y = 0 to 127 by 2
do x = 0 to 127 by 2
r = trunc( x*255/127 )
g = trunc( y*255/127 )
b = x+y
setcolor r g b
plot x y pt pen mode color str 100
end
end