Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在经历了所有这些之后,我遇到了一个完全不同的问题。
示例独立的 graph_display 应用程序现在可以编译并运行而不会崩溃。大多数功能看起来都是正确的,但是有一个问题。
我没有显示由 tlp 文件表示的图形,而是出现黑屏。
事实证明,当您将节点添加到郁金香图时,它会将它们全部(按维度)放置在同一个空间中。
应用布局将解决图表仅显示黑框的问题。
这可以通过如下代码片段来完成:
Graph *g = tlp::loadGraph(argv[1]); g->applyPropertyAlgorithm("Circular" g->getProperty<LayoutProperty>("viewLayout"), message);