MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / set_thetamax

Method set_thetamax

lib/matplotlib/projections/polar.py:1027–1029  ·  view source on GitHub ↗

Set the maximum theta limit in degrees.

(self, thetamax)

Source from the content-addressed store, hash-verified

1025 return spines
1026
1027 def set_thetamax(self, thetamax):
1028 """Set the maximum theta limit in degrees."""
1029 self.viewLim.x1 = np.deg2rad(thetamax)
1030
1031 def get_thetamax(self):
1032 """Return the maximum theta limit in degrees."""

Callers 3

test_polar_theta_limitsFunction · 0.80
polar_demo.pyFile · 0.80
polar_scatter.pyFile · 0.80

Calls

no outgoing calls

Tested by 1

test_polar_theta_limitsFunction · 0.64