Fills the interior of a polygon defined by an array of points specified by Point structures.
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public void FillPolygon( Brush brush, Point[] points )
Type: Aurigma.GraphicsMill.Drawing.Brush
A Brush that determines the characteristics of the fill.Type: System.Drawing.Point[]
An array of Point structures that represent the vertices of the polygon to fill.Polygon can be treated as closed polyline, where last point is connected with the first one.
To outline the polygon, use DrawPolygon(Pen, Point[]) method.
By default it uses Alternate fill mode.