jung ObservableCachingLayout 与 staticLayout

发布于 2024-11-17 19:33:39 字数 246 浏览 4 评论 0原文

我试图从布局中获取 x 和 y 坐标,但是当从 VisualizationViewer 获取布局时,返回的类型不是staticLayout而是 >ObservableCachingLayout(当然它不能转换为静态)。 有没有办法从 VisualizationViewer 获取静态布局? 或者从可视化中获取 x 和 y 的方法?谢谢

i m trying to get the x and y cordinate from the layout but when geting the layout from a VisualizationViewer the returned type is not staticLayout but ObservableCachingLayout (of course it couldn't be casted to static).
Is there a way to get the staticlayout from a VisualizationViewer ?
Or a way to get the x and y from the viz ? thx

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

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

发布评论

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

评论(1

忘东忘西忘不掉你 2024-11-24 19:33:39

要从 Layout 获取 x 和 y 坐标,请调用 layout.transform(vertex)。 (Layout 是从顶点到 Point 对象的 Transformer。)

StaticLayoutLayout 的实例 允许用户轻松指定每个顶点的坐标;它适用于您已经拥有坐标并且不需要算法来确定它们的情况。

To get the x and y coordinate from the Layout, you call layout.transform(vertex). (A Layout is a Transformer from vertices to Point objects.)

StaticLayout is an instance of Layout that allows the user to easily specify the coordinates of each vertex; it's intended for the case in which you already have coordinates and don't need an algorithm to determine them.

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