xxxxxxxxxx
15
function setup() {
createCanvas(624,428);
background(0,255,255);
}
function draw() {
strokeWeight(35);
stroke(255,0,0);
line(0,0,624,428);
noStroke();
fill(30,200,30);
ellipse(312,214,312,240);
fill(0,0,120);
rect(428,174,40,40);
}