Re: [Gambas-user] Paint.LineWidth question

2015-09-30 Thread Tobias Boege
On Wed, 30 Sep 2015, Rolf-Werner Eilert wrote: > This appears to be strange, though it might be just a misunderstanding. > > [code below] > > should draw a line, and it does. Now, if I want a thicker line, I set > LineWidth to... what? It is not documented. > > I tried 2, I tried 10, I tried 1

[Gambas-user] Paint.LineWidth question

2015-09-29 Thread Rolf-Werner Eilert
This appears to be strange, though it might be just a misunderstanding. Paint.LineWidth = 1 Paint.Color(Color.Black) Paint.MoveTo(x1, y1) Paint.LineTo(x2, y2) Paint.Fill() should draw a line, and it does. Now, if I want a thicker line, I set LineWidth to... wha