(y)
| 162 | // partition span ('y') to sector radial px value |
| 163 | var maxY = Math.min(maxHeight, maxDepth); |
| 164 | var y2rpx = function (y) { |
| 165 | return ((y - yOffset) / maxY) * rMax; |
| 166 | }; |
| 167 | // (radial px value, partition angle ('x')) to px [x,y] |
| 168 | var rx2px = function (r, x) { |
| 169 | return [r * Math.cos(x), -r * Math.sin(x)]; |
no outgoing calls
no test coverage detected
searching dependent graphs…