xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
background(255, 5);
frameRate(50)
noFill();
stroke(0);
ellipse(width/2, 100, noise( millis())*500, noise( millis())*500);
r=random(height);
ellipse (width/2,500,r,r);
frameRate(30)
fill(255,165,0)
ellipse (width/2,100,20,20)
fill(0)
ellipse (750,50,20,20)
ellipse (610,50,20,20)
}