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

Method set_thetamin

lib/matplotlib/projections/polar.py:1035–1037  ·  view source on GitHub ↗

Set the minimum theta limit in degrees.

(self, thetamin)

Source from the content-addressed store, hash-verified

1033 return np.rad2deg(self.viewLim.xmax)
1034
1035 def set_thetamin(self, thetamin):
1036 """Set the minimum theta limit in degrees."""
1037 self.viewLim.x0 = np.deg2rad(thetamin)
1038
1039 def get_thetamin(self):
1040 """Get the minimum 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