标签: c#
PointF[] points1; PointF[] points2; _Gd.DrawLines(new Pen(new SolidBrush(Color.Purple)),points1); _Gd.DrawLines(new Pen(new SolidBrush(Color.Green)),points2);
上面的代码用来绘制两行,我想找到上面两行的所有交集,我怎么能在C#中做到这一点?谢谢!