如何在Java JUNG中设置顶点坐标?

发布于 2024-11-15 06:24:45 字数 33 浏览 4 评论 0原文

我需要指定所有图形顶点的位置。 是否可以? 请帮忙。

I need to specify position of all graph's vertices.
Is it possible?
Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鱼窥荷 2024-11-22 06:24:45

如果您的意思是您有现有的顶点坐标并且您想使用它们在 JUNG 中布局图形,那么 StaticLayout 就是用于此目的的。

If what you're saying is that you have existing vertex coordinates and you want to use those to lay out your graph in JUNG, that's what StaticLayout is for.

∞梦里开花 2024-11-22 06:24:45

edu.uci.ics.jung.visualization 使用的 edu.uci.ics.jung.algorithms.layout 中的类:

GraphElementAccessor:用于基于坐标选择图形组件的接口。

布局:通用接口是一种从顶点返回 (x,y) 坐标的机制。

此处进行了描述。

Classes in edu.uci.ics.jung.algorithms.layout used by edu.uci.ics.jung.visualization:

GraphElementAccessor: Interface for coordinate-based selection of graph components.

Layout: A generalized interface is a mechanism for returning (x,y) coordinates from vertices.

Described here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文