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

Function _is_full_circle_deg

lib/matplotlib/projections/polar.py:698–704  ·  view source on GitHub ↗

Determine if a wedge (in degrees) spans the full circle. The condition is derived from :class:`~matplotlib.patches.Wedge`.

(thetamin, thetamax)

Source from the content-addressed store, hash-verified

696
697
698def _is_full_circle_deg(thetamin, thetamax):
699 """
700 Determine if a wedge (in degrees) spans the full circle.
701
702 The condition is derived from :class:`~matplotlib.patches.Wedge`.
703 """
704 return abs(abs(thetamax - thetamin) - 360.0) < 1e-12
705
706
707def _is_full_circle_rad(thetamin, thetamax):

Callers 3

__call__Method · 0.85
update_positionMethod · 0.85
drawMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…