xxxxxxxxxx
26
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background("#FFE051");
drawForeground()
drawBackground()
}
function drawForeground(){
fill("black")
circle(windowWidth-200,windowHeight/2,300)
fill("white")
ellipse(windowWidth-270,windowHeight/2-40,30,50)
ellipse(windowWidth-150,windowHeight/2-40,30,50)
fill("pink")
ellipse(windowWidth-210,windowHeight/2+50,80,50)
}
function drawBackground(){
fill("black");
square(random(width),random(height),10);
}