【发布时间】:2019-07-13 03:15:09
【问题描述】:
我正在尝试使用 matplotlib 绘制一个 3d Cartesian coordinate system,将原点居中,箭头的 3 个方向,类似这样的东西
我已经根据post 绘制了带有此代码的 2d 版本
def build_cartesian_plane(max_quadrant_range):
""" The quadrant range controls the range of the quadrants"""
l = []
zeros = []
f, ax = plt.subplots(figsize=(5,5))
plt.grid(True, color='grey', zorder=0,alpha=.5)
head_width = float(0.05) * max_quadrant_range
head_length = float(0.1) * max_quadrant_range
ax.arrow(0, 0, max_quadrant_range, 0, head_width=head_width, head_length=head_length, fc='k', ec='k',zorder=100)
ax.arrow(0, 0, 0, max_quadrant_range, head_width=head_width, head_length=head_length, fc='k', ec='k', zorder=100)
counter_dash_width = max_quadrant_range * 0.02
dividers = [0,.1,.2,.3,.4, .5, .6, .7, .8, .9, 1]
ax.spines['top'].set_color('none')
ax.spines['bottom'].set_position('zero')
ax.spines['left'].set_position('zero')
ax.spines['right'].set_color('none')
for i in dividers:
ax.plot([-counter_dash_width, counter_dash_width], [i*max_quadrant_range, i*max_quadrant_range], color='k')
ax.plot([i * max_quadrant_range, i*max_quadrant_range], [-counter_dash_width, counter_dash_width], color='k')
ax.plot([-counter_dash_width, counter_dash_width], [-i * max_quadrant_range, -i * max_quadrant_range], color='k')
ax.plot([-i * max_quadrant_range, -i * max_quadrant_range], [-counter_dash_width, counter_dash_width], color='k')
l.append(i * max_quadrant_range)
l.append(-i * max_quadrant_range)
zeros.append(0)
zeros.append(0)
build_cartesian_plane(10)
plt.show()
看来ax.arrow 不支持 3d 来做这个,所以,我只好用 quiver 来绘制一个简单的 3d 版本。
ax.quiver(0, 0, 0, 0, 3, 0,
arrow_length_ratio=0.1)
ax.quiver(0, 0, 0, 3, 0, 0,
arrow_length_ratio=0.1)
ax.quiver(0, 0, 0, 0, 0, 3,
arrow_length_ratio=0.1)
limt = 2
ax.set_xlim([-limt, limt])
ax.set_ylim([-limt, limt])
ax.set_zlim([-limt, limt])
得到了这个
我不熟悉 quiver,所以我不确定用 matplotlib 绘制 3d 笛卡尔坐标系是否可行。
任何提示将不胜感激。
【问题讨论】:
-
3D 绘图已经是 Matplotlib 的一部分!见matplotlib.org/mpl_toolkits/mplot3d/tutorial.html。
标签: python matplotlib plot