Syntax
FILLPOLY([G], {coordinates...} or [Coordinates], Color, [Alpha])
Description
Fills the polygon specified by the provided Cartésian coordinates using the color provided.
If Alpha (0 to 255) is provided, the polygon is drawn with trensparency.
Example
FILLPOLY([(0,0),(1,1),(2,0),(3,-1),(2,-2)], #FF, 128)
FILLPOLY — Discussion