Im currently using LineSegment to draw a line between 2 points. What I want to do is create a slight curve.
I have tried using the following:
ArcSegment arc1 = new ArcSegment(); arc1.Point = point[i]; arc1.Size = new Size(50, 10); arc1.IsLargeArc = false; arc1.SweepDirection = SweepDirection.Counterclockwise;
But it seems to be a very large curve. Im not quite sure what I would change to do this. I have played around with the Size property but the curve is to steep. I need a very slight curve.
Can anyone point me in the right direction,
Thanks