Arrowed Edges in Roassal 2

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Arrowed Edges in Roassal 2

Usman Bhatti
Alex,

Do we have Arrowed lines in Roassal 2 because I could not find the equivalent of ROLineDecorator in Roassal 2?

tx,

usman

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Arrowed Edges in Roassal 2

abergel
Currently no. Cairo, and therefore Athens, does not offer built-in arrows. So, this means that simply importing what we had in Roassal1 will do the thing.

Is that urgent?

Alexandre


On Mar 28, 2014, at 10:19 AM, Usman Bhatti <[hidden email]> wrote:

> Alex,
>
> Do we have Arrowed lines in Roassal 2 because I could not find the equivalent of ROLineDecorator in Roassal 2?
>
> tx,
>
> usman
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

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



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Arrowed Edges in Roassal 2

Usman Bhatti



On Thu, Apr 3, 2014 at 7:02 PM, Alexandre Bergel <[hidden email]> wrote:
Currently no. Cairo, and therefore Athens, does not offer built-in arrows.

How could you draw arrows with Athens in Roassal 1? I'm sure to have missed some details here.
 
So, this means that simply importing what we had in Roassal1 will do the thing.

Is that urgent?

In general, it is better to show the direction of dependencies and the visualization makes more sense. And we have already done some demos with arrowed edges, it is important for us that the demo resembles the delivered product. So, it is not urgent at the moment, but it can become urgent any time :)). If you provide some technical details, may be we can have a look.

usman

 

Alexandre


On Mar 28, 2014, at 10:19 AM, Usman Bhatti <[hidden email]> wrote:

> Alex,
>
> Do we have Arrowed lines in Roassal 2 because I could not find the equivalent of ROLineDecorator in Roassal 2?
>
> tx,
>
> usman
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

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



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Arrowed Edges in Roassal 2

Usman Bhatti
On Fri, Apr 4, 2014 at 9:41 AM, Usman Bhatti <[hidden email]> wrote:



On Thu, Apr 3, 2014 at 7:02 PM, Alexandre Bergel <[hidden email]> wrote:
Currently no. Cairo, and therefore Athens, does not offer built-in arrows.

How could you draw arrows with Athens in Roassal 1? I'm sure to have missed some details here.

Please ignore the answer above as I misunderstood your statement on Cairo and Athens.
 
 
So, this means that simply importing what we had in Roassal1 will do the thing.

Is that urgent?

In general, it is better to show the direction of dependencies and the visualization makes more sense. And we have already done some demos with arrowed edges, it is important for us that the demo resembles the delivered product. So, it is not urgent at the moment, but it can become urgent any time :)). If you provide some technical details, may be we can have a look.

usman

 

Alexandre


On Mar 28, 2014, at 10:19 AM, Usman Bhatti <[hidden email]> wrote:

> Alex,
>
> Do we have Arrowed lines in Roassal 2 because I could not find the equivalent of ROLineDecorator in Roassal 2?
>
> tx,
>
> usman
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

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



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Arrowed Edges in Roassal 2

abergel
Ricardo did an excellent job at inserting arrow.  Here is an example.
-=-=-=-=-=-=-=-=-=
| v e1 e2 l |
v := RTView new.
e1 := (RTEllipse new size: 10) element.
e2 := (RTEllipse new size: 10) element.
e2 translateBy: 100@0.

v add: e1.
v add: e2.
l := RTEdge from: e1 to: e2.
l + (RTLine new color: Color red) + (RTArrow new color: Color red).
v add: l.

v open
-=-=-=-=-=-=-=-=-=

Cheers,
Alexandre

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



On Apr 4, 2014, at 5:49 AM, Usman Bhatti <[hidden email]> wrote:

On Fri, Apr 4, 2014 at 9:41 AM, Usman Bhatti <[hidden email]> wrote:



On Thu, Apr 3, 2014 at 7:02 PM, Alexandre Bergel <[hidden email]> wrote:
Currently no. Cairo, and therefore Athens, does not offer built-in arrows.

How could you draw arrows with Athens in Roassal 1? I'm sure to have missed some details here.

Please ignore the answer above as I misunderstood your statement on Cairo and Athens.
 
 
So, this means that simply importing what we had in Roassal1 will do the thing.

Is that urgent?

In general, it is better to show the direction of dependencies and the visualization makes more sense. And we have already done some demos with arrowed edges, it is important for us that the demo resembles the delivered product. So, it is not urgent at the moment, but it can become urgent any time :)). If you provide some technical details, may be we can have a look.

usman

 

Alexandre


On Mar 28, 2014, at 10:19 AM, Usman Bhatti <[hidden email]> wrote:

> Alex,
>
> Do we have Arrowed lines in Roassal 2 because I could not find the equivalent of ROLineDecorator in Roassal 2?
>
> tx,
>
> usman
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

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



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev