We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello all,
I'm trying to put together a few ideas but I'm not sure how to execute them in code. I have some basic code down with the system that I want to pulse but I have no idea how get the circles to pulse (i.e. the radius of the circle slightly expands and contracts as a function of distance away from the center). I'm not sure what the best approach would be. Maybe an array which I can store each circles data and then I can call upon/edit that circles radius? Anyways, I'm not sure how to tackle this and if anyone can point me in the right direction that would be great!
int n = 1;
int c = 15;
void setup() {
size(640,360);
background(255);
noStroke();
}
void draw() {
n++;
float r = c*pow(n,.55);
float radius = 10;
float theta = n*PI*(3-sqrt(5));
fill(62,map(r,1,width,0,255),138,200);
pushMatrix();
translate(width/2,height/2);
ellipse(r*cos(theta)/4,r*sin(theta)/4,radius,radius);
rotate(theta);
popMatrix();
}
Answers
That's pretty cool! But I was thinking of something more like this. But in the flower pattern where the wave propagates outward radially.
I suppose something like this. However I hadn't anticipated how the pulse pattern would propagate.
oh! Sorry my bad ! :/ But yeah you got some cool effect though :) best of luck
Nice pulsating spiral flower effect! I've publish it online: =:)
http://studio.processingtogether.com/sp/pad/export/ro.90WsCogc75rxf/latest
Made a CoffeeScript version of it too: :bz
Ooh! Nice! I have been tweaking the code a bit more. This is what I came up with. There is a slight blur effect while the canvas spins. Also If you mess with the phase shift slightly the pulsing effect is a bit more pronounced (I'm talking about line 27 from the code above).
float pulse = pow(sin(t*PI/3-n*PI/8),1);
If you mess with the phase offset (i.e. n*PI/8) you can get the clusters of pulses to change more. I find values between 3 and 50 work best. You can also mess with the degree of the exponential in that function as well to get some interesting results. I combined a few of these techniques below with a modulo and raised the function to 1.5 power. It's pretty crazy!
Hey GoToLoop! I appreciate the mod a ton! I was just wondering if you could put a url to my website when you credit me? I need to start putting it in the code that I put online (still pretty new at Processing). I'm over at http://www.ocf.berkeley.edu/~keving/
Thanks!