gpt4 book ai didi

python - 楔形贴片位置未更新

转载 作者:太空宇宙 更新时间:2023-11-04 05:22:41 25 4
gpt4 key购买 nike

我试图通过修改其 center 属性来移动 matplotlib.patches.Wedge 的位置,但它似乎没有任何效果。

例如:

import matplotlib.pyplot as plt
import matplotlib.patches as patches

fig = plt.figure()
ax = fig.add_subplot(111)

tmp = patches.Wedge([2, 2], 3, 0, 180)
ax.add_artist(tmp)
tmp.center = [4, 4] # Try to move!

ax.set_xlim([0, 10])
ax.set_ylim([0, 10])
print(tmp.center)
plt.show()

产生以下内容:

sad

这显然是不正确的。

类似的方法适用于 matplotlib.patches.Ellipse:

import matplotlib.pyplot as plt
import matplotlib.patches as patches

fig = plt.figure()
ax = fig.add_subplot(111)

tmp = patches.Ellipse([2, 2], 2, 2)
ax.add_artist(tmp)
tmp.center = [4, 4] # Try to move!

ax.set_xlim([0, 10])
ax.set_ylim([0, 10])
print(tmp.center)
plt.show()

ellip

matplotlib.patches.Rectangle(从 centerxy)

import matplotlib.pyplot as plt
import matplotlib.patches as patches

fig = plt.figure()
ax = fig.add_subplot(111)

tmp = patches.Rectangle([2, 2], 3, 2)
ax.add_artist(tmp)
tmp.xy = [4, 4] # Try to move!

ax.set_xlim([0, 10])
ax.set_ylim([0, 10])
print(tmp.xy)
plt.show()

rect

我认为它可能是 Wedge 利用 xy 而不是 center,但是 Wedge 对象没有xy 属性。我在这里缺少什么?

最佳答案

您可能需要更新您的Wedge 的属性:

tmp.update({'center': [4,4]})

如您所见,该方法接受一个指定要更新的属性的字典。

result

关于python - 楔形贴片位置未更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39797843/

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