xxxxxxxxxx
function setup() {
createCanvas(400, 400);
background(0);
stroke(255);
strokeWeight(1.5);
for(let i = 0; i<80; i++){
line (width/2, height/2,random(width),random(height));
}
stroke(0,180,178);
for(let i = 0; i<80; i++){
line (width/2, height/2,random(width),random(height));
}
stroke(0,73,201);
for(let i = 0; i<80; i++){
line (width/2, height/2,random(width),random(height));
}
stroke(255);
strokeWeight(0.8);
fill(0);
ellipse(width/2,height/2,240,240);
}