C++ 中的可扩展和动态图形可视化库
我正在开发一款大量使用图表的软件。我想可视化这些图表(它们可能会变得很大)。是否有一个好的 C++ 库(或其他语言,但带有 C++ API)可以实现快速、简单且可扩展的图形可视化?
我对诸如缩放图形的某些部分或使用 OpenGL 进行 3D 渲染之类的功能感兴趣。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你使用Boost.Graph吗?然后你可以用 write_graphviz< 编写 .dot-files /a> 并让 GraphViz 进行绘图。
Do you use Boost.Graph? Then you can write .dot-files with write_graphviz and let GraphViz do the drawing.
相关于:https://stackoverflow.com/questions/492893/graph-drawing-c-library
Related to: https://stackoverflow.com/questions/492893/graph-drawing-c-library