// symnoise.pde // From processing.unlekker.net float x[],y[],x2[],y2[],r[],offs,D; float cnt; int num; void setup () { size(500,400); num=160; x=new float[num]; y=new float[num]; x2=new float[num]; y2=new float[num]; r=new float[num]; offs=0; D=0.02f; ellipseMode(CENTER_RADIUS); cnt=0; } void loop() { background(255*0.5f,100*0.5f,0); translate(width/2,height/2); noStroke(); cnt+=1.5f; rotate(radians(cnt)); for(int i=0; i