xxxxxxxxxx
24
function setup() {
createCanvas(800, 600);
angleMode(DEGREES);
}
function draw() {
noStroke();
// Background
background("#548235");
fill("#ffc000");
circle(400, 300, 400);
fill("black");
circle(314, 206, 50);
circle(504, 206, 50);
fill("#c00000");
arc(400, 340, 238, 196, 0, 180);
if (mouseIsPressed && saveable) {
saveable = false;
saveCanvas();
}
}