File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
lib/matplotlib/projections Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -995,15 +995,19 @@ def _gen_axes_spines(self):
995
995
return spines
996
996
997
997
def set_thetamax (self , thetamax ):
998
+ """Set the maximum theta limit in degrees."""
998
999
self .viewLim .x1 = np .deg2rad (thetamax )
999
1000
1000
1001
def get_thetamax (self ):
1002
+ """Return the maximum theta limit in degrees."""
1001
1003
return np .rad2deg (self .viewLim .xmax )
1002
1004
1003
1005
def set_thetamin (self , thetamin ):
1006
+ """Set the minimum theta limit in degrees."""
1004
1007
self .viewLim .x0 = np .deg2rad (thetamin )
1005
1008
1006
1009
def get_thetamin (self ):
1010
+ """Get the minimum theta limit in degrees."""
1007
1011
return np .rad2deg (self .viewLim .xmin )
1008
1012
1009
1013
def set_thetalim (self , * args , ** kwargs ):
You can’t perform that action at this time.
0 commit comments