如何在Java JUNG中设置顶点坐标?
我需要指定所有图形顶点的位置。 是否可以? 请帮忙。
I need to specify position of all graph's vertices.
Is it possible?
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要指定所有图形顶点的位置。 是否可以? 请帮忙。
I need to specify position of all graph's vertices.
Is it possible?
Please help.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果您的意思是您有现有的顶点坐标并且您想使用它们在 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.
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.