xxxxxxxxxx
function setup() {
createCanvas(600,600);
background(100);
// Set the framerate of the draw function
frameRate(10);
}
function draw() {
background(200,200,200);
fill(255, 204, 0)
ellipse(300, 300, 300, 300)
fill(255, 150, 0)
ellipse(300, 300, 170, 170)
fill(0)
ellipse(260, 280, 30, 30)
ellipse(335, 280, 30, 30)
fill(255)
ellipse(250, 278, 5, 5)
ellipse(325, 278, 5, 5)
fill(255, 200, 200)
ellipse(300, 318, 50, 20)
fill(255, 204, 0)
ellipse(220, 150, 100, 100)
ellipse(370, 150, 100, 100)
}