(nodeData: any, distance: any)
| 50 | } |
| 51 | } |
| 52 | function translationNodeData(nodeData: any, distance: any) { |
| 53 | nodeData.x += distance |
| 54 | nodeData.y += distance |
| 55 | if (nodeData.text) { |
| 56 | nodeData.text.x += distance |
| 57 | nodeData.text.y += distance |
| 58 | } |
| 59 | return nodeData |
| 60 | } |
| 61 | |
| 62 | function translationEdgeData(edgeData: any, distance: any) { |
| 63 | if (edgeData.startPoint) { |
no outgoing calls
no test coverage detected