PixelDisplay.fillPoly

From MiniScript Wiki
Revision as of 00:11, 29 April 2020 by ZachStrout (talk | contribs)
Jump to navigation Jump to search

PixelDisplay.fillPoly fills 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 default value list of three or more points
color color self.color color 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.fillPoly [[10,100], [200,500], [390,100]]		// fills a triangle