xxxxxxxxxx
function setup() {
createCanvas(600, 600);
background(100);
// Set the framerate of the draw function
frameRate(10);
}
function draw() {
background (200, 200, 200)
fill (200, 255, 200)
ellipse (300, 300, 300, 300)
ellipse (175, 175, 100, 100)
ellipse (425, 175, 100, 100)
fill (0, 0, 0)
ellipse (175,175, 50, 50)
ellipse (425, 175, 50, 50)
fill (255, 0, 0)
rect (275, 300, 50, 50)
}