(graph: G6.Graph)
| 71 | |
| 72 | /** 获取选中边线 */ |
| 73 | export function getSelectedEdges(graph: G6.Graph): G6.Edge[] { |
| 74 | return graph.findAllByState(ItemType.Edge, ItemState.Selected); |
| 75 | } |
| 76 | |
| 77 | /** 获取高亮边线 */ |
| 78 | export function getHighlightEdges(graph: G6.Graph): G6.Edge[] { |
no outgoing calls
no test coverage detected