gpt4 book ai didi

java - 如何更改 TreeLayout JUNG 中边的长度?

转载 作者:行者123 更新时间:2023-12-01 11:39:23 26 4
gpt4 key购买 nike

我知道如何更改顶点的大小,但是当我这样做时,TreeLayout 会放置节点以使边缘消失,即。节点重叠且边缘不可见。如果我更改布局(更改为 KKLayout),边缘会自动变大并且图形看起来很干净。我想知道是否可以将节点分开/增加 TreeLayout 本身的边缘长度?(任何其他维护树层次结构的建议也很好)

最佳答案

您可以在构造 TreeLayout 时定义节点之间的空间。这会增加边长:

TreeLayout treeLayout = new TreeLayout<String, Integer>(graph, 500, 500);

如果您没有输入 distxdisty 的值,则默认为 50。构造函数:

/**
* Creates an instance for the specified graph, X distance, and Y distance.
*/
public TreeLayout(Forest<V,E> g, int distx, int disty) {
if (g == null)
throw new IllegalArgumentException("Graph must be non-null");
if (distx < 1 || disty < 1)
throw new IllegalArgumentException("X and Y distances must each be positive");
this.graph = g;
this.distX = distx;
this.distY = disty;
buildTree();
}

关于java - 如何更改 TreeLayout JUNG 中边的长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29668016/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com