MangoSmoothie
New Member
Within the System.Drawing.Graphics namespace you can draw a polygon like this:\[code\]using (Graphics g = Graphics.FromImage(bmp)){ g.DrawPolygon(Pens.Black, myArray);}\[/code\]and there is a method to create a filled polygon \[code\]g.FillPolygon()\[/code\].How can you create a polygon (so it has a border) and then fill it?