下記の重なった部分の領域を求める方法を知りたいです。
直線の交点を求める以外の方法で、図形が重なり合ってできた四角形の座標を求めることは可能でしょうか?
python
1import matplotlib.pyplot as plt 2testx = [1,2,3] 3testy = [1,4,4] 4x = [1,3,4] 5y = [3,1,1] 6plt.fill(testx,testy,x,y,color="y",alpha=0.5) 7plt.show()
回答1件
あなたの回答
tips
プレビュー