v := CRMondrian new.
v nodes
box
size: [ :nb | nb @ nb ];
with: (1 to: 10).
v layout grid.
v
It raises an error:
I believe this is because in the body of size: should evaluate the argument against the object. In Roassal3 @ Pharo, we have RSShapeBuilder, which does pretty much the job.
Consider:
It raises an error:
I believe this is because in the body of
size:
should evaluate the argument against the object. In Roassal3 @ Pharo, we haveRSShapeBuilder
, which does pretty much the job.