私は、次の簡単な質問のためのソリューションのために失敗したブラウジングウェブた:プロット3Dポリゴン
頂点の値を使用して(例えば満たされた長方形や三角形)3Dポリゴンを描画する方法は? 私は多くのアイデアを試してみましたが、すべて失敗しました、以下を参照してください。
from mpl_toolkits.mplot3d import Axes3D
from matplotlib.collections import PolyCollection
import matplotlib.pyplot as plt
fig = plt.figure()
ax = Axes3D(fig)
x = [0,1,1,0]
y = [0,0,1,1]
z = [0,1,0,1]
verts = [zip(x, y,z)]
ax.add_collection3d(PolyCollection(verts),zs=z)
plt.show()
私は事前に任意のアイデア/コメントを感謝しています。受け入れ答えに基づいて
更新:
import mpl_toolkits.mplot3d as a3
import matplotlib.colors as colors
import pylab as pl
import scipy as sp
ax = a3.Axes3D(pl.figure())
for i in range(10000):
vtx = sp.rand(3,3)
tri = a3.art3d.Poly3DCollection([vtx])
tri.set_color(colors.rgb2hex(sp.rand(3)))
tri.set_edgecolor('k')
ax.add_collection3d(tri)
pl.show()
ここでの結果である:
このソリューションはどのようにしてPython 3.5用に更新できますか?このバージョンでは、 'TypeError:型 'zip'のオブジェクトにlen()がないというエラーが返されます。 – jlt199
@ jlt199単に[list(zip(...)]]を使うか、numpy> 1.10' [np。 ([X、Y、Z]、axis = 1)] – Y0da