Hi Peter,

I am not sure what you try to do. Having two ellipses with the same center? But 
different radius?

Something like that maybe:
-=-=-=-=-=-=-=-=-=
| v |
v := RTView new.
v @ RTDraggableView. 

shape := RTMultiCompositeShape new.
shape add: (RTEllipse new color: (Color yellow alpha: 0.3); size: [:c | c 
numberOfMethods sqrt * 10 ]).
shape add: (RTEllipse new color: (Color green alpha: 0.3); size: [:c | c 
numberOfLinesOfCode sqrt  * 10 ]).

v addAll: (shape elementsOn: RTShape withAllSubclasses).
RTFlowLayout on: v elements.

v 
-=-=-=-=-=-=-=-=-=



Alexandre


On Jul 11, 2014, at 11:05 PM, Peter Uhnák <i.uh...@gmail.com> wrote:

> Hi
> 
> I'm trying to draw an ellipse inside another ellipse but to no avail. I've 
> tried using RTCompositeShape but that just expands the size of the smaller 
> shape. Is there something else I'm missing (like fixing dimensions so they 
> won't get updated) or should I subclass RTAbstractCompositeShape and try to 
> make something on my own?
> 
> Thanks,
> Peter

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



Reply via email to