I have a graph that is being processed by neato, and I add new edges to it. However, I do not want the old nodes to be moved. I want neato to calculate the new positions of the new nodes, while the old nodes remain in the same place.
strict graph { node0 [pos="1,2"]; node1 [pos="2,3"]; }
and I add new edges:
strict graph { node0 [pos="1,2"]; node1 [pos="2,3"]; node1 -- node2 [len="3"]; ... }
I want to get the same positions on old nodes. For example:
strict graph { node0 [pos="1,2"]; node1 [pos="2,3"]; node2 [pos="3,4"]; ... }
How can i do this?
microo8
source share