remplacer MoveTo et LineTo en vb.net
Bonjour, j'aimerai convertir en vb.net MoveTo et LineTo avec GraphicsPath. mais impossible de trouver la solution a mon problème.
exemple de code :
Code:
1 2 3 4 5 6 7 8
| Dim newPath = New GraphicsPath()
Dim start = StartFigures
Dim close = CloseFigures
newPath.MoveTo(10, 10)
newPath.LineTo(20, 90)
newPath.LineTo(10, 60)
newPath.LineTo(90, 80)
newPath.LineTo(60, 30)...etc |
Pouvez-Vous me dire comment je pourrais remplacer MoveTo et LineTo avec GraphicsPath? merci d'avance