xxxxxxxxxx
15
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
let offx = 0.2+noise(0.03);
let offy = 0.2+noise(0.04) ;
for(let i=0; i<200;i++)
(
circle(200+100*sin(i*(0.05+offx)),200+100*cos(i*(0.05+offx)),50)
)
}