xxxxxxxxxx
22
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 10, 120);
fill(250, 190, 0);
noStroke();
translate(100, 100);
ellipse(-35.5, -24, 100);
ellipse(35.5, -24, 100);
triangle(-80, 0, 80, 0, 0, 96);
translate(-100, -100);
translate(width / 2, height / 2);
ellipse(-35.5, -24, 100);
ellipse(35.5, -24, 100);
triangle(-80, 0, 80, 0, 0, 96);
}