xxxxxxxxxx
15
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 10, 120);
fill(250, 190, 0);
noStroke();
ellipse(64.5, 76, 100);
ellipse(135.5, 76, 100);
triangle(20, 100, 180, 100, 100, 196);
}