void DrawPolygon(int n, wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0,
int fill_style = wxODDEVEN_RULE)
void DrawPolygon(wxList *points, wxCoord xoffset = 0, wxCoord yoffset = 0,
int fill_style = wxODDEVEN_RULE)
Draws a filled polygon using an array of points of size n, or list of pointers to points, adding the optional offset coordinate.
The last argument specifies the fill rule: wxODDEVEN_RULE (the default) or wxWINDING_RULE.
The current pen is used for drawing the outline, and the current brush for filling the shape. Using a transparent brush suppresses filling. The programmer is responsible for deleting the list of points.
Note that wxWindows automatically closes the first and last points.