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

edge vs edges #25

Closed bergel closed 3 years ago

bergel commented 3 years ago

Consider the following example:

v := CRMondrian new.
v nodes circle with: (1 to: 100).
v edge connectFrom: [ :nb | nb // 2].
v

We have nodes to define the nodes, and we have edge to define edges. Shouldn't it be edges instead?

cjrohrbach commented 3 years ago

Sure would make more sense