xxxxxxxxxx
26
function setup() {
createCanvas(600, 120);
}
function draw() {
background(60);
//Draw a shape by setting the coordinates to each of its vertices,
beginShape();
vertex(225, 43);
vertex(245, 50);
vertex(247, 36);
vertex(265, 50);
vertex(290, 53);
vertex(262, 56);
vertex(278, 85);
vertex(251, 66);
vertex(210, 70);
vertex(230, 55);
endShape();
//If you would like your shape to close:
//endShape(CLOSE);
}