Determine if a wedge (in radians) spans the full circle. The condition is derived from :class:`~matplotlib.patches.Wedge`.
(thetamin, thetamax)
| 705 | |
| 706 | |
| 707 | def _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 | |
| 716 | class _WedgeBbox(mtransforms.Bbox): |
no outgoing calls
no test coverage detected
searching dependent graphs…