↧
Answer by Kuba for How to add new nodes to an existing graph with fixed...
The following code is made after OP's response. It fullfils what I think it should. Except that there is no way to manually delete notes, I wanted to do this neatly but I've run out of time. :)Previous...
View ArticleAnswer by Rod for How to add new nodes to an existing graph with fixed...
I'm not sure if this is exactly what you want, but at least this is a starting point:Manipulate[node = {11, 12, 13, 14, 15, 16}; edges = {11 -> 14, 11 -> 16, 12 -> 16, 12 -> 15, 13 ->...
View ArticleHow to add new nodes to an existing graph with fixed (coordinates) nodes?
I'm ultimately trying to create a directed graph with some of the nodes in fixed positions and the other nodes placed around them in "acceptable" positions. It's better if I ask the question by showing...
View Article