-
Corkscrew Spiral Expression
Hi,
Just trying out how to create a ‘corkscrew’ type spiral that does not decrease in size. I found a tut on creating spirals by Ewan Smith, but not sure how to adjust the expression- I have tried changing certain values, but being honest my maths is not up to it!
(Spiral shape -applied to light controlling particular emitter position)
shrink=time+1
radius=1000/shrink
angle=time*200
x=radius*Math.cos(degreesToRadians(angle))
y=radius*Math.sin(degreesToRadians(angle))
//z=0 // no depth
z=time*time // with depth
centre=[640,360,0]
add(centre,[x,y,z])Any ideas most welcome,
Cheers,
Eugene