PixelDisplay.drawPoly
Revision as of 00:06, 29 April 2020 by ZachStrout (talk | contribs)
PixelDisplay.drawPoly draws (outlines) a polygon on the pixel display. The points argument can be either a list of maps containing "x" and "y" values, or a list of 2-element
lists interpreted as [x, y].
Arguments
| Parameter Name | Type | Default Value | Meaning |
|---|---|---|---|
| points | list | list of three or more points | |
| color | type | self.color | color to draw |
| penSize | number | 1 | width of line to draw |
Usage Notes
The polygon is automatically closed; there is no need to repeat the first point at the end of the list.
Example
gfx.drawPoly [[10,100], [200,500], [390,100]] // draws a triangle