圆形图可视化
我有图表。我需要用排列成圆圈的节点来可视化它。我怎么知道是否可以在没有边缘相交的情况下进行圆形可视化?
I have graph. I need visualise it with nodes arranged in a circle. How can i khow it's possible circle visualisation without intersections of edges or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用平面度测试来检查图形是否可以放置在没有相交的平面上。
You can use planarity testing to check if a graph can be laid out on a plane without intersections.