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