PointF[] points1;
PointF[] points2;
_Gd.DrawLines(new Pen(new SolidBrush(Color.Purple)),points1);
_Gd.DrawLines(new Pen(new SolidBrush(Color.Green)),points2);
上記のコードを使用して 2 つの線を描画しています。上の 2 つの線の交点をすべて見つけたいのですが、C# でそれを行うにはどうすればよいですか? ありがとう!
PointF[] points1;
PointF[] points2;
_Gd.DrawLines(new Pen(new SolidBrush(Color.Purple)),points1);
_Gd.DrawLines(new Pen(new SolidBrush(Color.Green)),points2);
上記のコードを使用して 2 つの線を描画しています。上の 2 つの線の交点をすべて見つけたいのですが、C# でそれを行うにはどうすればよいですか? ありがとう!