feat(gui): display number of arcs for paths

This commit is contained in:
Paul Alnet 2024-05-21 00:30:16 +02:00
parent 5b59292839
commit 205605920b

View file

@ -138,6 +138,7 @@ public class PathsPanel extends JPanel implements DrawingChangeListener, GraphCh
else { else {
info += String.format("Length = %.3f kilometers", length / 1000.); info += String.format("Length = %.3f kilometers", length / 1000.);
} }
info += String.format(", No of arcs = %d", path.getArcs().size());
// Display time // Display time
info += ", Duration="; info += ", Duration=";