(a, b)
| 6002 | b._pack_prev = a; |
| 6003 | } |
| 6004 | function d3_layout_packIntersects(a, b) { |
| 6005 | var dx = b.x - a.x, dy = b.y - a.y, dr = a.r + b.r; |
| 6006 | return dr * dr - dx * dx - dy * dy > .001; |
| 6007 | } |
| 6008 | function d3_layout_packSiblings(node) { |
| 6009 | if (!(nodes = node.children) || !(n = nodes.length)) return; |
| 6010 | var nodes, xMin = Infinity, xMax = -Infinity, yMin = Infinity, yMax = -Infinity, a, b, c, i, j, k, n; |
no outgoing calls
no test coverage detected