xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255);
}
function draw() {
background(255, 0, 0, 5);
//background(255 Graustufen, 5 Transparenz); oder background(255 R, 0 G, 0 B, 5 Transparenz);
print(millis());
//background(255);
//noStroke();
//fill(0);
//ellipse(random(width), random(height), 20, 20);
noFill();
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);
ellipse(width/4, height/2, noise(millis())*height, noise(millis())*height, 20, 20);
r = random(height)
ellipse(3*width/4, height/2, r, r);
}