Looks nice! Might even be relevant to one of my own use cases at some point. Thanks!
c
Casey Brooks
11/07/2023, 11:01 PM
oleksandrbalan/minabox might be able to do what you need, though it would be a manual process. But I’d think you could pretty easily store the XY positions of the nodes to display in the MinaBox, then draw Bezier curves between those same coordinates
g
geepawhill
11/07/2023, 11:06 PM
Thanks for the lead, Casey!
e
ephemient
11/07/2023, 11:37 PM
if it doesn't need to be dynamic, you could shell out to Graphviz for the graph layout and rendering
or pull in a Java library like JGraphX
g
geepawhill
11/07/2023, 11:39 PM
I will shell out no more forever -- the lack of a "shell" concept in Java/Kotlin is a remarkable hole for a supposedly interoperable environment -- but that second idea, you're right, there are several libraries that can do the layout for me. Thanks!