Nevit Dilmen
unread,Nov 22, 2009, 7:56:09 PM11/22/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MathMap
I modified the original Spiral filter so that it now has values for
red green and blue channel.
Nevit Dilmen
filter spiralRGB
(float Red: 0-20 (2),
float Green: 0-20 (4),
float Blue: 0-20 (6))
RRR=sin(r*Red*pi*2-a+t*2*pi)*0.5+0.5;
GGG=sin(r*Green*pi*2-a+t*2*pi)*0.5+0.5;
BBB=sin(r*Blue*pi*2-a+t*2*pi)*0.5+0.5;
rgbColor(RRR,GGG,BBB)
end