(y, h, angle)
| 633 | const outerDistance = chart.scales.r.getDistanceFromCenterForValue(opts.ticks.reverse ? chart.scales.r.min : chart.scales.r.max); |
| 634 | const tickBackdropHeight = 0; |
| 635 | const yForAngle = function(y, h, angle) { |
| 636 | if (angle === 90 || angle === 270) { |
| 637 | y -= (h / 2); |
| 638 | } else if (angle > 270 || angle < 90) { |
| 639 | y -= h; |
| 640 | } |
| 641 | return y; |
| 642 | }; |
| 643 | const toDegrees = function(radians) { |
| 644 | return radians * (180 / PI); |
| 645 | }; |
no outgoing calls
no test coverage detected