如何更新 Matplotlib.patches.Ellipse 对象的角度?

How do I update the angle of a Matplotlib.patches.Ellipse object?

我正在尝试使用 matplotlib 在 python 中制作一个简单的动画。作为其中的一部分,我需要能够为 patches.Ellipse 对象设置动画。我可以四处移动中心位置,但找不到更新或设置椭圆角度 属性 的方法。有一个 set_center 函数但没有 set_angle 函数,使用 update_from(OtherEllipseObject) 使椭圆消失并且似乎没有帮助。

import matplotlib.pyplot as plt
import matplotlib.patches as pat
import numpy as np
plt.ion()

xy1 = (1,1)

fig = plt.figure()
ax = fig.add_subplot(111)
ax.axis([0, 5, 0, 5])

ell1 = pat.Ellipse(xy1, 2, 1, 0)
ax.add_patch(ell1)

plt.waitforbuttonpress()
ell1.center = (2,2)
ell1.update_from(pat.Ellipse((2,2),2,1,0))
ax.add_patch(ell1)
plt.waitforbuttonpress()

有办法吗?如果没有,除了制作椭圆形多边形之外还有其他解决方法吗?

matplotlib.patches.Ellipse 有一个 属性 angle。只需将其设置为不同的值就足够了

ell1.angle = 45

我想我找到了解决方法,但它不是很优雅。通过挖掘椭圆对象的 class 定义,我看到在 matplotlib 3.something.something 中有一种设置中心的方法,该方法将 self.center 设置为某个新值并且还设置 self.stale = 是的。我假设 stale 告诉后端更新绘图,所以我只是向 matplotlib2.2.4 添加了一个方法,将角度设置为新值并将 stale 设置为 True。如果有更好的方法,我洗耳恭听!

从 3.3.0 开始,有一个稍微好一点的方法 this PR 为角度添加了一个适当的 setter 函数:

ell1.set_angle(45)

参见documentation,现在所有相关属性都很好getters/setters。