xxxxxxxxxx
45
function setup() {
createCanvas(700,500);
background (220);
for (let i = 0; i < 700; i++) {
let x = 2 * i
let y = 0
strokeWeight(1);
stroke(0,0,0,100)
line(x, 0, x, 700);
}
let x = random(-50,700);
let y = random(-50,500);
strokeWeight(150);
stroke(0,0,0, 200);
line(-50,y,700,500)
line(x,-y,200,700)
stroke(158, 28, 28,160);
line(x,0,660,550);
line(x,-50,150,590);
strokeWeight(0)
fill(250, 242, 222,150)
ellipse(220,y,280);
}
//function draw() {
//background(220);
//}