(d)
| 651 | } |
| 652 | |
| 653 | function getTextXY(d) { |
| 654 | return getCoords(d.rpx1, d.transform.textPosAngle); |
| 655 | } |
| 656 | |
| 657 | function getCoords(r, angle) { |
| 658 | return [r * Math.sin(angle), -r * Math.cos(angle)]; |
no test coverage detected
searching dependent graphs…