Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 532c9f3 commit 7f85b70Copy full SHA for 7f85b70
1 file changed
lib/matplotlib/projections/polar.py
@@ -1016,15 +1016,19 @@ def _gen_axes_spines(self):
1016
return spines
1017
1018
def set_thetamax(self, thetamax):
1019
+ """Set the maximum theta limit in degrees."""
1020
self.viewLim.x1 = np.deg2rad(thetamax)
1021
1022
def get_thetamax(self):
1023
+ """Return the maximum theta limit in degrees."""
1024
return np.rad2deg(self.viewLim.xmax)
1025
1026
def set_thetamin(self, thetamin):
1027
+ """Set the minimum theta limit in degrees."""
1028
self.viewLim.x0 = np.deg2rad(thetamin)
1029
1030
def get_thetamin(self):
1031
+ """Get the minimum theta limit in degrees."""
1032
return np.rad2deg(self.viewLim.xmin)
1033
1034
def set_thetalim(self, *args, **kwargs):
0 commit comments