I am building a relatively simple mind-mapping application in JavaFx, without having much knowledge of graph theory.
I've implemented my own Nodes and Curves, and pretty much the only thing I have left to do, is the hardest one, which is automatically positioning the nodes with some algorithm.
I have not really even tried my own solutions yet, but by the looks of it, depending of how elegant I want it to be.. this is not exactly a trivial matter. I'd probably want to have some kind of "circular" layout for the nodes.
I have peeked at JUNG2, which looks very nice, but unfortunately there is no native support for JavaFx. Can I still use it with a JavaFx project?
I'd be very grateful for any resources related to this.