/* * An example of a FILLED polygonal chain. * * Although the interior of the chain is filled, * notice that the chain ends are not closed. */ size(600,400); fill(240, 127, 71); strokeWeight(30); beginShape(); vertex(200,100); vertex(250,200); vertex(200,300); vertex(500,200); endShape();