cjrohrbach / BA-GT-Roassal

My bachelor thesis: creating a simple easy to use API to build graphs in GlamorousToolkit.
MIT License
2 stars 3 forks source link

Connected circles #8

Closed bergel closed 3 years ago

bergel commented 3 years ago
m := RSMondrian new.
m shape circle.
m nodes: (1 to: 100).
m line connectFrom: [ :nb | nb // 2 ].
m

Note that there is an edge builder in GT that we should probably use.

image