GraphBuilder
GraphBuilder copied to clipboard
Wrong direction of arc in specific situations
Do following steps:
- Create a undirected graph
- Create an arc such as V0 -> V1
- Now start bfs / dfs from V1
- Normally the line will reverse itself to suit the animation from v1 to v0
- After the animation change the graph to directed graph
- Now the arc added before points from v1 to v0
- Start bfs / dfs from V0
- Now the line won't grow from V0 to V1, instead it grows from V1 to V0
Will be fixed soon.