Alexandre Bergel

Results 31 issues of Alexandre Bergel

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....

question

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 :=...

enhancement
chart

Shouldn't it go to Shape instead?

bug

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...

question

in particular to cope with composite shapes

enhancement

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...

bug

We should have two hierarchies: one defining the visualization content (DOM), and another for the rendering structure, based on QuadTree

question

This makes no sense apparently... This should be cleaned up

enhancement