I build two topologies (used TopologyBilder) which have nodes on the same coordinate (red and blue nodes on the picture). Now I would like somehow "move" (or offset) one of the nodes. The problem is, the endpoints of the connected edges should follow the node. How can I solve this problem?
Hi @nindalf, I think you can use the VertexCreator (Mode: Replace Point At Index) here. The index 0 indicates the first vertex, -1 indicates the last vertex.
If I understand correctly, you only want to move one colour node and it's corresponding lines? Assuming you have someway of isolating the two topologies, you could offset the node then send it to the Anchor port of the AnchoredSnapper, with the lines sent to the Candidate port, with mode End Point Snapping
If I understand correctly, you only want to move one colour node and it's corresponding lines? Assuming you have someway of isolating the two topologies, you could offset the node then send it to the Anchor port of the AnchoredSnapper, with the lines sent to the Candidate port, with mode End Point Snapping
Hi @nindalf, I think you can use the VertexCreator (Mode: Replace Point At Index) here. The index 0 indicates the first vertex, -1 indicates the last vertex.
Hi @nindalf Use a TopologyBuilder to see which lines are connected to the node
Ok, I've found a solution for the problem. The solution looks as follow:
TS are the nodes which I like to separate; MS = medium voltage (red lines); NS = low voltage (blue lines). The result of this block is just the red topology with the offset nodes.
Here is the result to prove it's working:
Thank's for your help!