An expression which evaluates to a list of points.
Example
// Create a polyline pathvariable tPath asPathput polyline pathwithpoints [point [0,0], point [25,50], point [75,50], point [50,0]] into tPath
// Create a closed polygon path (rhombus)variable tPath asPathputpolygonpathwithpoints [point [0,0], point [25,50], point [75,50], point [50,0]] into tPath
Values
Name
Type
Description
return
A new polyline or polygon path. A polygon path will be closed with an additional line from the last point to the first.