Hi all!
As you may have noticed, here in Lugano we are playing a lot with
CodeCity ;-)
I was wondering if there is a way to programmatically take a screenshot
of a CodeCity visualization.
I see that with Roassal you can do that, but it seems to be not
compatible with CC, am I missing something?
Thanks!
Tommaso
Hi!
Serge shown us today how to have three panes in a GTInspector. This made my day!
https://vimeo.com/97507411
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi!
Is there any news about making Rubric faster when being used with the GTInspector?
It would be very cool to have this fixed :-)
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi guys,
I was playing with CodeCity. Thanks, Ricky for the effort in porting it to Pharo!
I was wondering if there is a way to pan the city? i.e., not rotating around axes, simple 2D pan.
I also have a “feature request” (that I already implemented myself): I noticed that the CCColorNormalizer lacks of a “zero” color.
In short, when you want to differentiate nodes with weight = 0.
For this I implemented a #CCColorNormalizerWithZeroColor (subclass of CCColorNormalizer) that overrides
ccValue: anObject
| inputValue |
inputValue := self transformation ccValue: anObject.
inputValue isZero
ifTrue: [ ^ self zero ]
ifFalse: [ ^ super ccValue: anObject ]
#zero is a Color, instance variable of CCColorNormalizerWithZeroColor.
Thanks in advance,
Roby
Hi!
We worked on the arrow support in Roassal. Here is a screenshot:
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hola,
Say I have a layout:
elements := <a collection of elements>
layout := RTForceBasedLayout new applyOn: elements; yourself
and then later I instantiate another element newElement, how can I tell the layout to take this one into account as well? If I add it to the collection of elements, nothing happens, and if I add it to the collection of elements contained in the layout I get the red error morph. :-(
---> Save our in-boxes! http://emailcharter.org <---
Johan Fabry - http://pleiad.cl/~jfabry
PLEIAD lab - Computer Science Department (DCC) - University of Chile
Hi all,
another small bug in Roassal2: sending cleanAll to a view does not remove the labels attached to nodes in that view.
---> Save our in-boxes! http://emailcharter.org <---
Johan Fabry - http://pleiad.cl/~jfabry
PLEIAD lab - Computer Science Department (DCC) - University of Chile
Hi all,
at some point I was sending @RTlabelled to a group of edges that happened to be empty, and up came the debugger :-(
---> Save our in-boxes! http://emailcharter.org <---
Johan Fabry - http://pleiad.cl/~jfabry
PLEIAD lab - Computer Science Department (DCC) - University of Chile