xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255);
}
function draw() {
//background(255, 5)
noFill();
stroke(0);
ellipse(random(width), random(height), 20, 20);
stroke(255, 0, 0);
ellipse( noise(millis() )*width, noise( millis()-1 )*height, 20, 20);
line(mouseX, mouseY, noise(millis() )*width, noise( millis()-1 )*height);
}