overlapping edges in DirectedWeightedGraph in JGraphT using mxCircleLayout
问题 Running below code on an already constructed Graph (usind ArbEdge.class as Edges) Graph<String, ArbEdge> graph = new DefaultDirectedWeightedGraph<>(ArbEdge.class); public void pngGraph() { JGraphXAdapter<String, ArbEdge> graphAdapter = new JGraphXAdapter<String, ArbEdge>(this.getGraph()); mxIGraphLayout layout = new mxCircleLayout(graphAdapter); // mxParallelEdgeLayout layout = new mxParallelEdgeLayout(graphAdapter); layout.execute(graphAdapter.getDefaultParent()); BufferedImage image =