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

Function _is_full_circle_rad

lib/matplotlib/projections/polar.py:707–713  ·  view source on GitHub ↗

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

(thetamin, thetamax)

Source from the content-addressed store, hash-verified

705
706
707def _is_full_circle_rad(thetamin, thetamax):
708 """
709 Determine if a wedge (in radians) spans the full circle.
710
711 The condition is derived from :class:`~matplotlib.patches.Wedge`.
712 """
713 return abs(abs(thetamax - thetamin) - 2 * np.pi) < 1.74e-14
714
715
716class _WedgeBbox(mtransforms.Bbox):

Callers 2

__call__Method · 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…