xxxxxxxxxx
20
// Note:
// Uncomment `saveCanvas('play-icon')` to download
// the icon as a PNG file.
function setup() {
createCanvas(150, 150);
// triangle
fill(0)
stroke(0);
strokeWeight(10);
strokeJoin(ROUND);
triangle(55, 50, 55, 100, 105, 75);
// circle
noFill();
circle(width / 2, height / 2, 140);
// saveCanvas('play-icon');
}