(event, d)
| 468 | d.fy = d.y; |
| 469 | } |
| 470 | function dragged(event, d) { |
| 471 | d.fx = event.x; |
| 472 | d.fy = event.y; |
| 473 | } |
| 474 | function dragended(event, d) { |
| 475 | if (!event.active && simulation) simulation.alphaTarget(0); |
| 476 | d.fx = null; |
nothing calls this directly
no outgoing calls
no test coverage detected