gambas-source-code/app/examples/Drawing/Painting/Example13
Benoît Minisini c6a9cd69c2 [EXAMPLES]
* NEW: Add examples again. I hope correctly this time.


git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-12 19:58:52 +00:00

16 lines
262 B
Text

Public Sub Example13()
Paint.MoveTo(50, 75)
Paint.LineTo(200, 75)
Paint.MoveTo(50, 125)
Paint.LineTo(200, 125)
Paint.MoveTo(50, 175)
Paint.LineTo(200, 175)
Paint.LineWidth = 30
Paint.LineCap = Paint.LineCapRound
Paint.Stroke
End