Is there a way to make Roassal draw an edge from one node to itself?
I looked at a bunch of the examples and I cannot find any that does that, and simply adding an edge in the source code produces nothing.
i.e.
view shape rectangle size: 1.
view nodes: (1 to: 5).
view shape arrowedLine.
view
edges: ((OrderedCollection new) add: (1->1); add: (2->2); add: (3->3); add: (4->4); add: (5->5); yourself)
from: #key
to: #value.
view circleLayout.
produces no edges at all.