i=0
for red=0 to 7
for blue=0 to 7
for green=0 to 7
rainbow( i )=((red*3) mod

* 256
+green* 16
+blue
i=i+1
next
next
next
Ok, I know a lot of you program- and since I don't I was hoping you can help me understand this. Now this was for an Atari ST. I understand the RGB values, the ST was 0-7 (not nearly as impressive as the Amigas 0-15). I wanted to duplicate this rainbow manually with a paint program but don't know how to do this. This was from my favorite Fujiboink Demo.
If you can break it down to something like this
R0 G0 B0
R0 G1 B1
R0 G2 B2
R0 G3 B3
Ro G4 B4
etc etc. That would be great because I can understand this. I could copy this.
Thank you as always. =)