How do I get an edge length from a graph contructed in JUNG? In pixels would be nice but if its more complicated than that then please explain why.
feedback
|
|
Missed this question when originally posted, my apologies. First, you can get the distance in Layout coordinates by getting the position for each vertex in the Layout and then doing the obvious math. Second, I don't understand why you want the link weight to be a function of how the layout placed the vertices. This seems kind of arbitrary. Usually, if anything, it's the other way around (edge weight determines vertex placement in Layout). Finally, assuming you're using Dijkstra{Distance,ShortestPath}, you can provide any kind of edge weights that you like; take a look at the Javadoc for how to do this. What's the underlying problem you're trying to solve? | |||
|
feedback
|