[Pharo-users] Roassal question on Kiviat diagrams and coloring

2017-08-30 Thread Sebastian Heidbrink via Pharo-users
--- Begin Message --- Hi all! Does anybody have an advice on how to color Kiviat diagram nodes and edges based on a nodes property/attribute? For example, if I wanted to create a Kiviat diagram with weather information and color all days (nodes and edges) with temperatures above 0 degrees in

Re: [Pharo-users] Roassal question

2015-02-24 Thread Pierre CHANSON
Alright thank you for the explanations yes it looks nice :) 2015-02-24 12:27 GMT-03:00 Alexandre Bergel : > Cool picture :-) > > Alexandre > > > > On Feb 23, 2015, at 4:04 PM, Werner Kassens > wrote: > > > > Hi Pierre, > > perhaps i should show what i intend to do, i attached a screenshot and i

Re: [Pharo-users] Roassal question

2015-02-24 Thread Alexandre Bergel
Cool picture :-) Alexandre > On Feb 23, 2015, at 4:04 PM, Werner Kassens wrote: > > Hi Pierre, > perhaps i should show what i intend to do, i attached a screenshot and i > would like to have the axis' on the picture to the right. > > On 02/23/2015 04:38 PM, Werner Kassens wrote: >> Hi Pierre

Re: [Pharo-users] Roassal question

2015-02-24 Thread Werner Kassens
On 02/24/2015 01:51 AM, Pierre Chanson wrote: by the way I am interested in how you did this Werner, actually if it would be an easy and simple algorithm to fill a defined circle for example like a mesher. Hi Pierre, it is just a not-yet-ready half-baked implementation of interval-arithmetic,

Re: [Pharo-users] Roassal question

2015-02-23 Thread Pierre Chanson
Ah yes exactly, I was not explaining it correctly as I am so used to it, sorry But it is good now, by the way I am interested in how you did this Werner, actually if it would be an easy and simple algorithm to fill a defined circle for example like a mesher. Cheers, Pierre > On 23 févr. 201

Re: [Pharo-users] Roassal question

2015-02-23 Thread Werner Kassens
ahh, yes understood, now things work as i want them to work! thank you, werner On 02/23/2015 11:02 PM, Peter Uhnák wrote: that is exactly the problem i have , RTBox does not understand #translateTo: or #translateBy: a:=RTBox new . a translateTo: 1@2.-->Error:__MessageNotUnderst

Re: [Pharo-users] Roassal question

2015-02-23 Thread Peter Uhnák
> > > that is exactly the problem i have , RTBox does not > understand #translateTo: or #translateBy: > a:=RTBox new . > a translateTo: 1@2.-->Error:MessageNotUnderstood > iow at which point exactly do i apply #translateTo: ? That's because RTBox is just a shape, and shape doesn't have position.

Re: [Pharo-users] Roassal question

2015-02-23 Thread Werner Kassens
On 02/23/2015 09:01 PM, Pierre CHANSON wrote: Why don't you use an RTView and RTBox ? so you can use directly the builder with view elements as objects ? I am not sure to understand your problem because to me you can always create any desired boxes using RTBox new width:y; height:x then place t

Re: [Pharo-users] Roassal question

2015-02-23 Thread Pierre CHANSON
Hi Werner, yes the builder is not made to work for Tracher canvas and Trachel shapes because in a builder we use methods that can be understood by an RTView and RTShape etc. Why don't you use an RTView and RTBox ? so you can use directly the builder with view elements as objects ? I am not sure

Re: [Pharo-users] Roassal question

2015-02-23 Thread Werner Kassens
Hi Pierre, i still have a problem since i can't place my RTBoxes at the position i need them to be. obviously they dont understand #translate: or #translateTo: like the things in TRCanvas. is there a way around this restriction? werner

Re: [Pharo-users] Roassal question

2015-02-16 Thread Pierre Chanson
Thank you very much Werner ! :) actually it's not complicated at all, based on some other builders. But I realized how it can be useful as I really sometime need to see where some elements of my view are (and not in a relative position to one origin. Even if the position is relative to the can

Re: [Pharo-users] Roassal question

2015-02-16 Thread Werner Kassens
Hi Pierre, wow, you see me really impressed! yes, that is what i was looking for, i see in your picture that it is possible to use floats, not only integers, exactly what i would need. i suppose i can also use rectangles that are not quadratic? i will go on vacation tomorrow and will be back

Re: [Pharo-users] Roassal question

2015-02-16 Thread Pierre CHANSON
2015-02-16 14:05 GMT-03:00 Werner Kassens : > everything would be scaled automatically Yes I see now what you would like, the idea would be to place an X and Y axis around a collection of RTElements in a view. So I integrated a RTAxisAdaptedBuilder in the last version of Roassal2 for that. The

Re: [Pharo-users] Roassal question

2015-02-16 Thread Werner Kassens
On 02/16/2015 05:18 PM, Pierre CHANSON wrote: But about the axis, the idea would be to have axis from 0@0 or axis that are placed near your elements ? Using RTGrapher you can integrate axis easily that are placed for your datas, but if we want particular axis to go in this view we will have to us

Re: [Pharo-users] Roassal question

2015-02-16 Thread Pierre CHANSON
Hi Werner, With this I get my two Rectangles shapes in a view with their positions printed in popup. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= view := RTView new. coll:=Array with: (Rectangle origin: 500@500 corner: 510@520) with: (Rectangle origin: 505@504 corner:

[Pharo-users] Roassal question

2015-02-14 Thread Werner Kassens
Hi, i have a little problem, where i think roassal could perhaps be helpfull, but i have to admit this is the very first time i looked into roassal, hence i have a stupid question: i have a collection of something like rectangles, lets say: coll:=Array with: (Rectangle origin: 500@500 corner: 5

Re: [Pharo-users] Roassal question : adding drop condition to ROElements in a visualization

2014-07-02 Thread verdier
On Tue, 01 Jul 2014 21:16:31 +0800, Ben Coman wrote: verdier wrote: Hi everyone, I am new to this mailing list and to Smalltalk too. If I've made something wrong using this mailing list, please just tell me what I have to do. I am currently making a graphical development tool in Pharo 2.0

Re: [Pharo-users] Roassal question : adding drop condition to ROElements in a visualization

2014-07-02 Thread stepharo
On 1/7/14 11:20, verdier wrote: Hi everyone, I am new to this mailing list and to Smalltalk too. Welcome :) If I've made something wrong using this mailing list, please just tell me what I have to do. No ask any question you want. I am currently making a graphical development tool in Pha

Re: [Pharo-users] Roassal question : adding drop condition to ROElements in a visualization

2014-07-01 Thread Ben Coman
verdier wrote: Hi everyone, I am new to this mailing list and to Smalltalk too. If I've made something wrong using this mailing list, please just tell me what I have to do. I am currently making a graphical development tool in Pharo 2.0 (I sadly can't go on more recent versions because I'm

[Pharo-users] Roassal question : adding drop condition to ROElements in a visualization

2014-07-01 Thread verdier
Hi everyone, I am new to this mailing list and to Smalltalk too. If I've made something wrong using this mailing list, please just tell me what I have to do. I am currently making a graphical development tool in Pharo 2.0 (I sadly can't go on more recent versions because I'm adding my tool t

Re: [Pharo-users] Roassal question

2013-11-27 Thread Goubier Thierry
I will try to see if I can reproduce it on a test case and give you the code. Thierry Le 27/11/2013 12:20, Tudor Girba a écrit : Can you provide the snippet that works for trees? Doru On Mon, Nov 25, 2013 at 2:40 PM, Goubier Thierry mailto:thierry.goub...@cea.fr>> wrote: Hi, would

Re: [Pharo-users] Roassal question

2013-11-27 Thread Tudor Girba
Can you provide the snippet that works for trees? Doru On Mon, Nov 25, 2013 at 2:40 PM, Goubier Thierry wrote: > Hi, > > would anybody knows how to do a nested layout with reversed radial tree in > Roassal? I'd like to build a grid of reversed radial trees... It works with > trees, but not with

[Pharo-users] Roassal question

2013-11-25 Thread Goubier Thierry
Hi, would anybody knows how to do a nested layout with reversed radial tree in Roassal? I'd like to build a grid of reversed radial trees... It works with trees, but not with the radial layout. Thanks, Thierry -- Thierry Goubier CEA list Laboratoire des Fondations des Systèmes Temps Réel Emb