xxxxxxxxxx
27
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
for(let j = 0; j < 10; j++){
trans_x = random(100, 600)
trans_y = random(100, 600)
translate(trans_x, trans_y);
noStroke()
for (let i = 0; i < 100; i++) {
fill(random(255), random(255), random(255), 180)
width = random(width )
height = random(height )
color1 = random(10, 50)
color2 = random(10, 50)
for (let l = 0; l < 20; l++) {
ellipse(color1, color2, width, height)
rotate(PI / 5);
}
}
translate(-trans_x, -trans_y);
noStroke()
}
}