xxxxxxxxxx
24
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
ellipseMode(CENTER)
fill('green');
ellipse(200, 200, 300, 300)
fill('black')
ellipse(150, 130, 50, 75)
fill('black')
ellipse(270, 130, 50, 75)
fill('black')
strokeWeight(12.0);
strokeCap(ROUND);
line(-27000, 100, 1700000, 10000);
}