我試圖繪製三維表面plot_trisurf這樣的:Matplotlib三角形(plot_trisurf)顏色和電網
xs = NP.array([ 0.00062 0.00661 0.02000 0.01569 0.00487 0.01784])
ys = NP.array([ 0.99999 0.66806 0.50798 0.61230 0.83209 0.86678])
zs = NP.array([-0.24255 -0.42215 -0.31854 -0.77384 -0.77906 -0.98167])
ax=fig.add_subplot(1,2,1, projection='3d')
ax.grid(True)
ax.plot_trisurf(xs, ys, zs, triangles = triangles, alpha = 0.0, color = 'grey')
這給了我
現在我有兩個問題:
- 三角形是黑色的,我可以改變這個問題嗎? (它的工作原理在二維 與triplot與
color = 'grey'
但這似乎並沒有工作 這裏 - (如果它是可見的)的3D繪圖的網格留下痕跡 三角形:好像印在網格在 三角形的頂部,而我(當然)希望三角形要在 頂格的繪製
你可以在你的問題中加入'xs,ys,zs'嗎? –