Disable mouse buttons for 3D rotation, panning, and zooming.
(self)
| 1506 | self._zoom_btn = np.atleast_1d(zoom_btn).tolist() |
| 1507 | |
| 1508 | def disable_mouse_rotation(self): |
| 1509 | """Disable mouse buttons for 3D rotation, panning, and zooming.""" |
| 1510 | self.mouse_init(rotate_btn=[], pan_btn=[], zoom_btn=[]) |
| 1511 | |
| 1512 | def can_zoom(self): |
| 1513 | # doc-string inherited |
nothing calls this directly
no test coverage detected