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