xxxxxxxxxx
22
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
}
function draw() {
background(220);
circle(140, 150, 80);
circle(260, 150, 80);
circle(140, 150, 20);
circle(260, 150, 20);
//line(180, 160, 220, 160);
ellipse(200, 220, 240, 120);
arc(180, 200, 40, 50, 0, 180);
arc(220, 200, 40, 50, 0, 180);
}