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 @@ -1016,15 +1016,19 @@ def _gen_axes_spines(self):
1016
1016
return spines
1017
1017
1018
1018
def set_thetamax (self , thetamax ):
1019
+ """Set the maximum theta limit in degrees."""
1019
1020
self .viewLim .x1 = np .deg2rad (thetamax )
1020
1021
1021
1022
def get_thetamax (self ):
1023
+ """Return the maximum theta limit in degrees."""
1022
1024
return np .rad2deg (self .viewLim .xmax )
1023
1025
1024
1026
def set_thetamin (self , thetamin ):
1027
+ """Set the minimum theta limit in degrees."""
1025
1028
self .viewLim .x0 = np .deg2rad (thetamin )
1026
1029
1027
1030
def get_thetamin (self ):
1031
+ """Get the minimum theta limit in degrees."""
1028
1032
return np .rad2deg (self .viewLim .xmin )
1029
1033
1030
1034
def set_thetalim (self , * args , ** kwargs ):
You can’t perform that action at this time.
0 commit comments