| 80 | // that the circles drawn around nodes’ center points don't get cut off. |
| 81 | |
| 82 | class Scale { |
| 83 | constructor(layout, width, height) { |
| 84 | let xs = layout.map(node => node.x); |
| 85 | let ys = layout.map(node => node.y); |
nothing calls this directly
no outgoing calls
no test coverage detected