Reputation: 6186
I am developing a piece of software that makes an intensive use of graphs. I'd like to visualize these graphs (they may become quite large). Is there a good C++ library (or in another language, but with a C++ API) that allows for fast, easy, and scalable visualization of graphs?
I would be interested in features such as zooming on some parts of the graph, or have 3-d rendering using OpenGL.
Upvotes: 3
Views: 2259
Reputation: 25828
Related to: https://stackoverflow.com/questions/492893/graph-drawing-c-library
Upvotes: 0
Reputation: 32298
Do you use Boost.Graph? Then you can write .dot-files with write_graphviz and let GraphViz do the drawing.
Upvotes: 4