10-03-2024, 07:31 PM
Hey, bplus, I really like your mod. Played around with the angles today, to come up with a few variations, Replace the original angle (a) line with one of these to see the different effects achieved manipulating the angle.
- Dav
- Dav
Code: (Select All)
a = _Atan2(y - cy, x - cx) + t 'original
a = _Atan2(y - cy, x - cx) + Sin(rad * 2 + t) 'spiral twist
a = _Atan2(y - cy, x - cx) + Sin(t) * 4 'churning using sin
a = _Atan2(y - cy, x - cx) + Cos(t) * 4 'churning using cos
a = _Atan2(y - cy, x - cx) + Sin(t) * rad 'spiral (radius)
a = _Atan2(y - cy, x - cx) + Sin(t * 4 + (x / _Width)) * .5 'edge wave
a = _Atan2(y - cy, x - cx) + (x / _Width) * Sin(t) * 5 'distort