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