当我尝试使用平移和缩放工具时,图在左键单击时旋转,在右键单击时从中心缩放。通过进行矩形选择来缩放绘图不起作用。有人知道如何解决这个问题吗?
问问题
1750 次
1 回答
3
翻阅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 行
于 2015-05-13T15:51:24.123 回答