Draw Circles and Curves which connect those circles
问题 I've a requirement to draw a few Circles and Curves connecting those circles. The circles have to be drawn in rows and columns fashion, so I guess using a GridPane would be a good choice. However, once all the circles have been drawn, how do I add curves to connect circles belonging to different columns on this GridPane? I cannot use GridPane.add(node, row, column) for curves cuz that would add the curves to GridCells, neither does GridPane have .getchildren.add() method. Is there a better