When I use this line to draw lines on a picture:
I get this image:Code:Dim MyPen as new Pen with {.width=1}
Dim MyGraphics As Graphics = Graphics.FromImage(BMP)
MyGraphics.DrawLines(MyPen, MyDots.ToArray)
http://i46.tinypic.com/1eassh.png
but if I use MyPen.Width = 2, then I get the right image:
http://i49.tinypic.com/ei5j0p.png
I don't understand what I are doing wrong.

