Set the minimum theta limit in degrees.
(self, thetamin)
| 1033 | return np.rad2deg(self.viewLim.xmax) |
| 1034 | |
| 1035 | def set_thetamin(self, thetamin): |
| 1036 | """Set the minimum theta limit in degrees.""" |
| 1037 | self.viewLim.x0 = np.deg2rad(thetamin) |
| 1038 | |
| 1039 | def get_thetamin(self): |
| 1040 | """Get the minimum theta limit in degrees.""" |
no outgoing calls