I want to virtualize my network simulations and need to plot the nodes in the network. Each node has a pre-defined location and I need to plot the nodes into the correct coordination.

I am using JUNG: http://jung.sourceforge.net/applet/index.html

Any suggestions?

Thanks!

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I recently solved this problem by writing my own rendering Layout for JUNG.

As base for my derived layout I used the Circle Layout, which is pretty simple. In there you will see that JUNG does a setLocation(Dimension d) for every Vertex, which is pretty much what you are looking for, I guess. Just take a look at the source of the CircleLayout. Then you could use a custom Vertex object, which stores the coordinates you want the vertex to have, which is then read by your custom layout.

link|improve this answer
I am pretty new to Java and JUNG, do you have any code examples to share? Please? – mamruoc Jan 10 '11 at 14:01
As I said, you should look at the original version of the CircleLayout in the JUNG framework itself. Here is my modified version of the CircleLayout pastebin.com/9UkEaqR4 , in case it help. The magic you are looking for begins around line 120. – x3ro Jan 10 '11 at 14:05
Did I answer your question?... – x3ro Jan 11 '11 at 11:14
Hello,I have been away last days. Please let me have a little of time verifying that it works before accepting. Thanks! – mamruoc Jan 12 '11 at 8:11
It worked great! Thanks – mamruoc Jan 12 '11 at 14:45
feedback

Your Answer

 
or
required, but never shown

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