荣格如何在新位置创建新顶点
我在jung中使用圆形布局。单击按钮后,我可以创建一个新节点,但它与之前的节点重叠。新的节点会在同一位置生成。请帮助我为新创建的节点动态分配位置
I am using circle layout in jung. On the click of button i am able to create a new node but it overlaps with the earlier one. Ever new node is getting generated at the same position. Please help me in dynamically allotting a location to newly created node
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CircleLayout 是一个静态布局:如果向图形添加新顶点,则需要创建一个新的 CircleLayout 实例。
除此之外,我不知道在创建顶点时如何为顶点分配位置,但这是您的代码,而不是我们的代码。 :)
CircleLayout is a static layout: if you add new vertices to the graph, you need to create a new CircleLayout instance.
Aside from that, I have no idea how you're assigning locations to vertices when you create them, but that's your code, not ours. :)