xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
//Schnelligkeit bestimmen
//frameRate(5);
}
function draw() {
background (100);
//stroke(20, 0, 250);
fill (255, 255, 80);
noStroke();
//noFill();
//Wo Start; wie lange; erhöhen um wie viel (Schritte)
for(y=100; y<height; y+=20)
{
for(x=100; x<width; x+=20)
{
push();
//r = random(50)
//fill(random(255));
rotate(radians(x));
translate(50, 50);
//rotate(sin(millis()/1000));
ellipse ( noise (millis()) *height, noise (millis()) *height, 20,20);
//rect(0, 0, 20, 20);
//ellipse(x, y, r, r);
pop();
}
}
}