matplotlib:通过滑块改变矩形的位置

matplotlib: change position of rectangle by slider

我正在尝试通过更改滑块来更改我绘制的矩形的 xy 位置。我为椭圆实现了这个,但对于矩形它不起作用。我不知道为什么?!

Rectangle没有.center

尝试使用

def update(val):
    Spiegel.set_xy((val,0))