gpt4 book ai didi

python-3.x - 如何在Python中旋转3D文本?

转载 作者:行者123 更新时间:2023-12-03 08:41:09 25 4
gpt4 key购买 nike

我尝试过旋转,但不起作用。

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D # 3d graph
from mpl_toolkits.mplot3d import proj3d # 3d graph
fig = plt.figure(figsize=[5,6])
ax = fig.gca(projection='3d')
ax.text(0, 0, 8.8, '$z$', 'z')
plt.show()

enter image description here

最佳答案

试试这个 ax.set_zlabel('z-label', rotation=90) ,我希望这能起作用。

编辑

documentation概述了如何在 3D 中旋转通用文本。给定一个 3D 图形,可以通过以下方式添加文本:

ax.text(x, y, z, label, direction)

direction参数控制旋转,它是:

  1. 指定 (x, y, z) 的三元组方向
  2. 'x' , 'y' ,或'z' ,指定文本应与指定轴平行。

关于python-3.x - 如何在Python中旋转3D文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62739498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com