xxxxxxxxxx
22
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
line(0,height/2, width, height/2);
line(width/2,0, width/2, height);
fill('purple');
strokeWeight(4);
//stroke('green');
rect(width/2,height/2, 150, 150);
fill('orange');
square(100,100,50);
fill('cyan')
ellipse(75,300, 50, 75);
fill(255, 255, 0);
circle(300,100,75)
circle(width/2, height/2, 150)
}