xxxxxxxxxx
function setup() {
createCanvas(600,600);
background(100);
stroke(0); // Black outlines
// Let's draw a circle here
fill("#FFFF00")
ellipse(500, 100, 70, 70);
// Let's draw a small triangle
fill("#00FF00")
triangle(100, 500, 200, 300, 300, 500);
// Let's draw a medium triangle
fill("#00FF00")
triangle(250, 500, 400, 200, 550, 500);
// Let's draw a large triangle
fill("#00FF00")
triangle(350, 500, 475, 275, 600, 500);
}