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