Matplotlib 3D平移和缩放不起作用

时间:2014-10-30 04:52:30

标签: matplotlib mplot3d

当我尝试使用平移和缩放工具时,绘图会在左键单击时旋转,并在右键单击时从中心缩放。通过进行矩形选择来缩放绘图是行不通的。 有人知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

查看github上的源代码,似乎不支持您要查找的功能。因此,您无法使用mplot3d.Axes3D

进行缩放和/或平移
def can_zoom(self) :
"""
Return *True* if this axes supports the zoom box button functionality.
3D axes objects do not use the zoom box button.
"""
return False

def can_pan(self) :
"""
Return *True* if this axes supports the pan/zoom button functionality.
3D axes objects do not use the pan/zoom button.
"""
return False

源代码:https://github.com/matplotlib/matplotlib/blob/master/lib/mpl_toolkits/mplot3d/axes3d.py 在撰写本文时,这些是在第1017行至第1031行