Are there any good C++ libraries that can be used to visualize a graph of objects that have been instantiated and have random connections to each other? I would also need it to be able to be updated in real-time so that the graph was constantly updated.
Share
If you use the Boost Graph Library then it supports the graphviz dot language. Otherwise it shouldn’t be hard to write the code on your own.