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

Method get_theta_direction

lib/matplotlib/projections/polar.py:1133–1143  ·  view source on GitHub ↗

Get the direction in which theta increases. -1: Theta increases in the clockwise direction 1: Theta increases in the counterclockwise direction

(self)

Source from the content-addressed store, hash-verified

1131 self._direction.invalidate()
1132
1133 def get_theta_direction(self):
1134 """
1135 Get the direction in which theta increases.
1136
1137 -1:
1138 Theta increases in the clockwise direction
1139
1140 1:
1141 Theta increases in the counterclockwise direction
1142 """
1143 return self._direction.get_matrix()[0, 0]
1144
1145 def set_rmax(self, rmax):
1146 """

Callers 6

_adjust_locationMethod · 0.80
update_positionMethod · 0.80
get_matrixMethod · 0.80
update_positionMethod · 0.80

Calls 1

get_matrixMethod · 0.45

Tested by

no test coverage detected