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.

link|improve this question
It's been a while since I last used Jung. As I recall edges could be straight, quadratic, cubic... so the edge between two nodes could have different lengths, depending on your View or Renderer (or what it was called). So is it really about edge length, or just the distance between the nodes? – S.L. Barth Aug 8 '11 at 18:01
You are correct, my edges are straight which made me think I needed their length but what I actually need is the distance between linked nodes. The reason I need this information is to add weights to my links for a weighted shortest path algorithm. Any idea how I could achieve this? – Thomas Aug 8 '11 at 20:29
feedback

1 Answer

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?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.