当有两个点阵列时找到两条线的交点

时间:2012-08-01 10:36:03

标签: c#

PointF[] points1;
PointF[] points2;
_Gd.DrawLines(new Pen(new SolidBrush(Color.Purple)),points1);
_Gd.DrawLines(new Pen(new SolidBrush(Color.Green)),points2);

上面的代码用来绘制两行,我想找到上面两行的所有交集,我怎么能在C#中做到这一点?谢谢!

0 个答案:

没有答案