xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(220);
}
function draw() {
background(220, 5);
noFill();
//ellipse(random(width), random(height), 20, 20);
stroke(200,10,0)
//line(0,0 noise (millis())*width, noise (millis())*height);
ellipse(2*width/4, height/2, noise( millis() )*height, noise( millis() )*height);
stroke(10,200,0)
r = random(height)
ellipse(3*width/4, height/2, r, r);
}