Region を使用して、2 つのパス (2 つのポリゴンから作成されたパス) の交点を見つけます。
GraphicsPath gp1 = new GraphicsPath();
gp1.AddPolygon(P);//P - array of points [first polygon]
Region d = new Region(gp1);
GraphicsPath gp2 = new GraphicsPath();
gp2.AddPolygon(P_);//P_ - array of points [second polygon]
d.Intersect(gp2);//founded intersection
Region d の交点を取得するにはどうすればよいですか?