Furthest-point Voronoi diagram in Java

。_饼干妹妹 提交于 2019-12-12 17:09:05

问题


I'm looking for a naive algorithm to find the furthest point Voronoi diagram. Input sizes are not going to be big enough where I need something complex and as there are no Java libraries that I can find.

I was hoping someone could describe a simple algorithm that shouldn't be too hard to compute?

Thanks


回答1:


You can find an algorithm pseduocode for farthest-point Voronoi diagram here. The Java code written by the same person is here.




回答2:


I know this is kind of a late addition, but you might want to take a look at the Tektosyne library.

It can generate Voronoi diagrams and Delaunay triangulations, with conversion to DCEL subdivisions and has support for graph algorithms like A* pathfinding, path coverage, flood fill, line of sigh.



来源:https://stackoverflow.com/questions/16123538/furthest-point-voronoi-diagram-in-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!