I’m using an algorithm to take a snapshot from a bluetooth scatternet on Android (Beddernet + RES Algorithm). But I want to plot this snapshot using and undirected graph.
I found some Java libraries to plot it, but they all use applets and Android doesn’t support applets. So how can I do it with Android? (I need the snapshot graph on the device not on the computer).
I found a solution for it.
I’m using this app https://github.com/drange/Grapher to implement my graph. I have modified some parameters to adapt to my app. It uses https://github.com/jgrapht/jgrapht for graph algorithms.