如何使用Matplotlib在3D中绘制六边形

时间:2019-01-23 10:59:41

标签: matplotlib plot 3d

我通过搜索尝试了一些尝试,但是我对顶点的理解还是很迷茫,或者至少现在大脑会褪色,这可以帮助我我需要规则的六角形

from matplotlib import pyplot as plt
from mpl_toolkits.mplot3d.art3d import Poly3DCollection, Line3DCollection

fig = plt.figure(figsize=(15,9))
ax = fig.add_subplot(111, projection='3d')

x = [0, 2, 1, 1,1,1]
y = [0, 0, 1, 0, 1,1]
z = [0, 0, 0, 1,1,1]

vertices = [[0, 1, 2], [0, 1, 3], [0, 2, 3], [1, 2, 3],[0,1,2],[0,1,2]]

tupleList = list(zip(x, y, z))

poly3d = [[tupleList[vertices[ix][iy]] for iy in range(len(vertices[0]))] for ix in range(len(vertices))]
ax.scatter(x,y,z)
ax.add_collection3d(Poly3DCollection(poly3d, facecolors='w', linewidths=1, alpha=0.5))
ax.add_collection3d(Line3DCollection(poly3d, colors='k', linewidths=0.2, linestyles=':'))

plt.show()

1 个答案:

答案 0 :(得分:-2)

Matplotlib无法用于真实的3D。 matplotlib中的3D内容主要是为了更好地显示2D数据。 如果需要真正的3D可视化,我建议使用Mayavi或VTK。

如果六边形不能表示为2个变量的数学函数(例如z = f(x,y)),则matplotlib是错误的工具。