| 4 | import { edgeIntensityScale } from "../lib/density"; |
| 5 | |
| 6 | interface EdgeLinesProps { |
| 7 | nodes: GraphNode[]; |
| 8 | edges: GraphEdge[]; |
| 9 | highlightedIds: Set<number> | null; |
| 10 | opacity?: number; |
| 11 | /* User edge-brightness multiplier (see DisplaySettings). Layered on top of |
| 12 | * the automatic density scale. */ |
| 13 | brightness?: number; |
| 14 | /* When set, edge.target is looked up in this array instead of `nodes`. |
| 15 | * Used for cross-galaxy edges where source lives in the primary graph |
| 16 | * and target lives in a linked project's offset-adjusted nodes. */ |
| 17 | targetNodes?: GraphNode[]; |
| 18 | } |
| 19 | |
| 20 | function getClusterKey(fp?: string): string { |
| 21 | if (!fp) return ""; |
nothing calls this directly
no outgoing calls
no test coverage detected