home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 3
/
Meeting_Pearls_III.iso
/
SYS
/
Rexx
/
test.clrx
< prev
next >
Wrap
Text File
|
1994-03-05
|
516b
|
40 lines
/*
This program calculates simple animation with changing cloudiness.
Copyright © 1994 Krzysztof Kobus. All Rights Reserved.
*/
Options Results
Address CLOUDS.1
cl_fft 64
cl_control displayandsave
cl_width 200
cl_height 100
cl_velocity 0.2
cl_direction 60
cl_strength 0.3
cl_seed 12
cl_openproject
IF RC ~= 0 THEN
DO
SAY 'Error: 'CLOUDS.LASTERROR
EXIT
END
DO i=-10 TO 30
cl_frames 2
cl_density i
cl_calculate
IF RC ~= 0 THEN
DO
SAY 'Error: 'CLOUDS.LASTERROR
EXIT
END
END
cl_closeproject