Roassal3
Roassal3 copied to clipboard
The Roassal Visualization Engine
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...
Roassal3-Benchmarks loads SMark package as a dependency and it loads the Scripting package. Smark uses only ScriptingConsole from it which is a simple stream wrapper. The problem is that Scripting...
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
This is wrong... ZoomToFit should be done only once, when opening the window
check this: ```Smalltalk | c p classes names x y | classes := Collection withAllSubclasses. x := classes collect: #numberOfMethods. y := classes collect: #linesOfCode. c := RSChart new. c...
Consider the following code: ```Smalltalk c := RSCanvas new. compo := RSComposite new. compo color: Color green. blueBox := RSBox new color: Color blue; size: 30. compo add: blueBox. compo...
For a long time I've been interested adapting Roassal to be a vector drawing tool like Visio or yEd. Years ago I started doing this to Roassal2, but the stumbling...
It should on some points... The rotation is ignored in `RSShapeExamples new example38Transformable open`