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.
2 parents 487fc05 + d7487a6 commit c2b1f5bCopy full SHA for c2b1f5b
1 file changed
lib/matplotlib/projections/polar.py
@@ -995,15 +995,19 @@ def _gen_axes_spines(self):
995
return spines
996
997
def set_thetamax(self, thetamax):
998
+ """Set the maximum theta limit in degrees."""
999
self.viewLim.x1 = np.deg2rad(thetamax)
1000
1001
def get_thetamax(self):
1002
+ """Return the maximum theta limit in degrees."""
1003
return np.rad2deg(self.viewLim.xmax)
1004
1005
def set_thetamin(self, thetamin):
1006
+ """Set the minimum theta limit in degrees."""
1007
self.viewLim.x0 = np.deg2rad(thetamin)
1008
1009
def get_thetamin(self):
1010
+ """Get the minimum theta limit in degrees."""
1011
return np.rad2deg(self.viewLim.xmin)
1012
1013
def set_thetalim(self, *args, **kwargs):
0 commit comments