xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
translate(width*0.5,height*0.5);
fill(255);
noStroke();
ellipse (0,0, 50,50);
ellipse(30,0,50,50);
triangle(-20,15,50,15,15,50);
pop();
}