There are two GraphicsPath (line and arc):
GraphicsPath graphicsPathLine = new GraphicsPath() graphicsPathLine.AddLine(line.StartPoint, line.EndPoint) GraphicsPath _ArcPath = new GraphicsPath(); _ArcPath.AddArc(_RestrictRectangle, _StartAngle, _SweepAngle);
Is it possible to find their intersection point (s)?