VB Code:
Dim rect1 As New Rectangle(0, 0, 100, 100) Dim rect2 As New Rectangle(10, 10, 100, 100) c.AddLine(50, 50, 0, 50) c.AddArc(rect1, 180, 90) c.AddLine(0, 50, 10, 50) c.AddArc(rect2, 190, 70) c.AddLine(50, 0, 50, 50)
Is there a way to stop Arc's from connecting to the previous line's endpoint? That is really annoying.... otherwise, the function would work great....


Reply With Quote