绘制路径而不覆盖现有形状?
需要帮助..
我有一个组织布局,其矩形形状不在有序网格中。如果它是一个网格,我会使用 A-星代码。那么,如何连接两个节点(即两个矩形)而不干扰节点(矩形)之间。
我只想让算法找到绘制路径的坐标,以便我可以在生成 SVG 文件时使用它。
Help needed..
I have a organization layout which have rectangular shapes not in an ordered grid. If it was a grid, I would have used A- star code. So, How to connect two nodes (i.e. two rectangles) without interfering in between nodes(rectangles).
I just want the algorithm to find coordinates that will draw the path so that I can use that in generating SVG file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遵循的算法-
右、上、下作为四个数据集。
我实现了这个算法,即使这没有给出精确的最短路径。这提供了很大的输出。如果有人请求,我想分享java代码,因为我发现很难解释我是如何通过上述几点实现的。
Algorithm which I followed-
right, top, bottom as four datasets.
I implemented this algorithm even though this is not giving an exact shortest path. This gives great output. I would like to share the java code if anyone requests since I find it difficult to explain how I implemented by above points.