/* * A simple example of a polygonal chain (or "polyline"). * * This one has four vertices (connected by three segments). */ size(600,400); noFill(); beginShape(); vertex(200,100); vertex(250,200); vertex(200,300); vertex(500,200); endShape();