xxxxxxxxxx
25
function setup() {
createCanvas(800, 800);
strokeWeight(10);
let x = width * 0.75;
let y = height/2;
background(color(0,80,180));
noSmooth();
stroke(0);
line(0,y,width,y);
fill(color(220,80,0));
circle(x,y,200);
noStroke();
fill(180);
rect(0,y+5,width,y+5);
}
function draw() {
// background(220);
}