Alexandre Bergel
Alexandre Bergel
Error
The script given in https://gist.github.com/xge/ab2056c570060245914f1e9fb2a1fbe0 raises an error: ```Smalltalk maxAnisotropy ^ MaxAnisotropy ``` The class variable `MaxAnisotropy` is apparently `nil`. It should be probably initialized.
Consider the script below: ```Smalltalk assoc := 1->2. c := RSCanvas new addAll:({ 1. 2 } collect:[ :each| lbl := RSLabel new text: each asString; color: Color green darker; yourself....
We should have a way to obtain contextual information using the mouse. Here is a hacky way of doing it: ```Smalltalk x := -3.14 to: 3.14 by: 0.4. y :=...
Is there a way to make a arge node more "repulsive" than a smaller node? ```Smalltalk r := Random seed: 42. values := Dictionary new. 1 to: 4 do: [...
From botwhytho: In roassal 2, I was able to export to SVG a couple of the SVG examples, but not other types of examples. Can this exporter be used for...
in particular to cope with composite shapes
I found a bug: ```Smalltalk c := RSComposite new. c addShape: (RSBox new model: 42). c addShape: (RSEllipse new model: 43). c shapeFromModel: 42 ``` returns `nil` Somehow related, the...
We should have two hierarchies: one defining the visualization content (DOM), and another for the rendering structure, based on QuadTree
This makes no sense apparently... This should be cleaned up