Simple question about blueprint complexity visualization

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

Simple question about blueprint complexity visualization

Sebastian Tleye-2
Hi all, 

I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.

Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)

Thanks

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

Re: Simple question about blueprint complexity visualization

Sebastian Tleye-2
Well, I managed to do it by adding RTZoomableView @ RTDraggableView to the view.

2015-03-05 14:11 GMT+01:00 Sebastian Tleye <[hidden email]>:
Hi all, 

I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.

Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)

Thanks



--
Sebastián Tleye

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

Re: Simple question about blueprint complexity visualization

abergel
Hi Sebastian,

I have just tried, and indeed, this is missing.
Wanna to share your fix?

Cheers,
Alexandre


> On Mar 5, 2015, at 8:34 AM, Sebastian Tleye <[hidden email]> wrote:
>
> Well, I managed to do it by adding RTZoomableView @ RTDraggableView to the view.
>
> 2015-03-05 14:11 GMT+01:00 Sebastian Tleye <[hidden email]>:
> Hi all,
>
> I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.
>
> Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)
>
> Thanks
>
>
>
> --
> Sebastián Tleye
> _______________________________________________
> 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: Simple question about blueprint complexity visualization

Tudor Girba-2
Hi,

Thanks for the report. The toolbar should be provided through the openWithToolbarEntitled: extension from Glamour. However, there seems to be a bug in this.

For example, this gets the toolbar:

GLMCompositePresentation new 
with: [:composite | 
composite roassal2 title: 'Title' ];
openOn: 42

but, this not:
GLMCompositePresentation new 
with: [:composite | 
composite roassal2 ];
openOn: 42

This is a bug in Glamour. Could you open an issue with this?

Doru


On Thu, Mar 5, 2015 at 3:40 PM, Alexandre Bergel <[hidden email]> wrote:
Hi Sebastian,

I have just tried, and indeed, this is missing.
Wanna to share your fix?

Cheers,
Alexandre


> On Mar 5, 2015, at 8:34 AM, Sebastian Tleye <[hidden email]> wrote:
>
> Well, I managed to do it by adding RTZoomableView @ RTDraggableView to the view.
>
> 2015-03-05 14:11 GMT+01:00 Sebastian Tleye <[hidden email]>:
> Hi all,
>
> I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.
>
> Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)
>
> Thanks
>
>
>
> --
> Sebastián Tleye
> _______________________________________________
> 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



--

"Every thing has its own flow"

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

Re: Simple question about blueprint complexity visualization

Sebastian Tleye-2
In reply to this post by abergel
Hi Alexandre, 

I think that more than a fix is a patch, 

however, this is what I did (in case someone has the same problem)

in the method FAMIXTypeGroup>>viewBlueprintComplexity I added the @ RTZoomableView @ RTDraggableView just before the view open.


"protocol: *Moose-RoassalPaintings"
viewBlueprintComplexity
<menuItem: 'Blueprint complexity' category: 'Visualize'> 
| view |
view := RTView new.
self viewBlueprintOn: view.
view @ RTZoomableView @ RTDraggableView.
view open"WithToolbarEntitled: 'Blueprint complexity'"




2015-03-05 15:40 GMT+01:00 Alexandre Bergel <[hidden email]>:
Hi Sebastian,

I have just tried, and indeed, this is missing.
Wanna to share your fix?

Cheers,
Alexandre


> On Mar 5, 2015, at 8:34 AM, Sebastian Tleye <[hidden email]> wrote:
>
> Well, I managed to do it by adding RTZoomableView @ RTDraggableView to the view.
>
> 2015-03-05 14:11 GMT+01:00 Sebastian Tleye <[hidden email]>:
> Hi all,
>
> I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.
>
> Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)
>
> Thanks
>
>
>
> --
> Sebastián Tleye
> _______________________________________________
> 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



--
Sebastián Tleye

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

Re: Simple question about blueprint complexity visualization

abergel
Hi!

I have just committed. Also, instead of doing "view open" we should do "view inspect”

I also tried to export a large visualization and put it on the web. You can open it on:

You can drag and drop the view and use the mouse wheel for zooming.

This is a beautiful visualization.


Cheers,
Alexandre


On Mar 5, 2015, at 10:38 AM, Sebastian Tleye <[hidden email]> wrote:

Hi Alexandre, 

I think that more than a fix is a patch, 

however, this is what I did (in case someone has the same problem)

in the method FAMIXTypeGroup>>viewBlueprintComplexity I added the @ RTZoomableView @ RTDraggableView just before the view open.


"protocol: *Moose-RoassalPaintings"
viewBlueprintComplexity
<menuItem: 'Blueprint complexity' category: 'Visualize'> 

| view |
view := RTView new.
self viewBlueprintOn: view.
view @ RTZoomableView @ RTDraggableView.
view open"WithToolbarEntitled: 'Blueprint complexity'"




2015-03-05 15:40 GMT+01:00 Alexandre Bergel <[hidden email]>:
Hi Sebastian,

I have just tried, and indeed, this is missing.
Wanna to share your fix?

Cheers,
Alexandre


> On Mar 5, 2015, at 8:34 AM, Sebastian Tleye <[hidden email]> wrote:
>
> Well, I managed to do it by adding RTZoomableView @ RTDraggableView to the view.
>
> 2015-03-05 14:11 GMT+01:00 Sebastian Tleye <[hidden email]>:
> Hi all,
>
> I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.
>
> Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)
>
> Thanks
>
>
>
> --
> Sebastián Tleye
> _______________________________________________
> 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



-- 
Sebastián Tleye
_______________________________________________
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: Simple question about blueprint complexity visualization

Tudor Girba-2
What did you commit?

Doru

On Thu, Mar 5, 2015 at 5:53 PM, Alexandre Bergel <[hidden email]> wrote:
Hi!

I have just committed. Also, instead of doing "view open" we should do "view inspect”

I also tried to export a large visualization and put it on the web. You can open it on:

You can drag and drop the view and use the mouse wheel for zooming.

This is a beautiful visualization.


Cheers,
Alexandre


On Mar 5, 2015, at 10:38 AM, Sebastian Tleye <[hidden email]> wrote:

Hi Alexandre, 

I think that more than a fix is a patch, 

however, this is what I did (in case someone has the same problem)

in the method FAMIXTypeGroup>>viewBlueprintComplexity I added the @ RTZoomableView @ RTDraggableView just before the view open.


"protocol: *Moose-RoassalPaintings"
viewBlueprintComplexity
<menuItem: 'Blueprint complexity' category: 'Visualize'> 

| view |
view := RTView new.
self viewBlueprintOn: view.
view @ RTZoomableView @ RTDraggableView.
view open"WithToolbarEntitled: 'Blueprint complexity'"




2015-03-05 15:40 GMT+01:00 Alexandre Bergel <[hidden email]>:
Hi Sebastian,

I have just tried, and indeed, this is missing.
Wanna to share your fix?

Cheers,
Alexandre


> On Mar 5, 2015, at 8:34 AM, Sebastian Tleye <[hidden email]> wrote:
>
> Well, I managed to do it by adding RTZoomableView @ RTDraggableView to the view.
>
> 2015-03-05 14:11 GMT+01:00 Sebastian Tleye <[hidden email]>:
> Hi all,
>
> I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.
>
> Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)
>
> Thanks
>
>
>
> --
> Sebastián Tleye
> _______________________________________________
> 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



-- 
Sebastián Tleye
_______________________________________________
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




--

"Every thing has its own flow"

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

Re: Simple question about blueprint complexity visualization

abergel
To make the view draggable and calling #inspect instead of #open.

Cheers,
Alexandre

> On Mar 5, 2015, at 2:57 PM, Tudor Girba <[hidden email]> wrote:
>
> What did you commit?
>
> Doru
>
> On Thu, Mar 5, 2015 at 5:53 PM, Alexandre Bergel <[hidden email]> wrote:
> Hi!
>
> I have just committed. Also, instead of doing "view open" we should do "view inspect”
>
> I also tried to export a large visualization and put it on the web. You can open it on:
> https://dl.dropboxusercontent.com/u/31543901/RoassalHTML/blueprint/blueprintComplexity.html
>
> You can drag and drop the view and use the mouse wheel for zooming.
>
> This is a beautiful visualization.
>
> <Screen Shot 2015-03-05 at 11.51.08 AM.png>
>
> Cheers,
> Alexandre
>
>
>> On Mar 5, 2015, at 10:38 AM, Sebastian Tleye <[hidden email]> wrote:
>>
>> Hi Alexandre,
>>
>> I think that more than a fix is a patch,
>>
>> however, this is what I did (in case someone has the same problem)
>>
>> in the method FAMIXTypeGroup>>viewBlueprintComplexity I added the @ RTZoomableView @ RTDraggableView just before the view open.
>>
>>
>> "protocol: *Moose-RoassalPaintings"
>> viewBlueprintComplexity
>> <menuItem: 'Blueprint complexity' category: 'Visualize'>
>>
>> | view |
>> view := RTView new.
>> self viewBlueprintOn: view.
>> view @ RTZoomableView @ RTDraggableView.
>> view open"WithToolbarEntitled: 'Blueprint complexity'"
>>
>>
>>
>>
>> 2015-03-05 15:40 GMT+01:00 Alexandre Bergel <[hidden email]>:
>> Hi Sebastian,
>>
>> I have just tried, and indeed, this is missing.
>> Wanna to share your fix?
>>
>> Cheers,
>> Alexandre
>>
>>
>> > On Mar 5, 2015, at 8:34 AM, Sebastian Tleye <[hidden email]> wrote:
>> >
>> > Well, I managed to do it by adding RTZoomableView @ RTDraggableView to the view.
>> >
>> > 2015-03-05 14:11 GMT+01:00 Sebastian Tleye <[hidden email]>:
>> > Hi all,
>> >
>> > I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.
>> >
>> > Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)
>> >
>> > Thanks
>> >
>> >
>> >
>> > --
>> > Sebastián Tleye
>> > _______________________________________________
>> > 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
>>
>>
>>
>> --
>> Sebastián Tleye
>> _______________________________________________
>> 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
>
>
>
>
> --
> www.tudorgirba.com
>
> "Every thing has its own flow"
> _______________________________________________
> 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: Simple question about blueprint complexity visualization

Tudor Girba-2
Where did you commit because I do not see it in Moose-Finder? :)

Doru

On Fri, Mar 6, 2015 at 12:14 AM, Alexandre Bergel <[hidden email]> wrote:
To make the view draggable and calling #inspect instead of #open.

Cheers,
Alexandre

> On Mar 5, 2015, at 2:57 PM, Tudor Girba <[hidden email]> wrote:
>
> What did you commit?
>
> Doru
>
> On Thu, Mar 5, 2015 at 5:53 PM, Alexandre Bergel <[hidden email]> wrote:
> Hi!
>
> I have just committed. Also, instead of doing "view open" we should do "view inspect”
>
> I also tried to export a large visualization and put it on the web. You can open it on:
> https://dl.dropboxusercontent.com/u/31543901/RoassalHTML/blueprint/blueprintComplexity.html
>
> You can drag and drop the view and use the mouse wheel for zooming.
>
> This is a beautiful visualization.
>
> <Screen Shot 2015-03-05 at 11.51.08 AM.png>
>
> Cheers,
> Alexandre
>
>
>> On Mar 5, 2015, at 10:38 AM, Sebastian Tleye <[hidden email]> wrote:
>>
>> Hi Alexandre,
>>
>> I think that more than a fix is a patch,
>>
>> however, this is what I did (in case someone has the same problem)
>>
>> in the method FAMIXTypeGroup>>viewBlueprintComplexity I added the @ RTZoomableView @ RTDraggableView just before the view open.
>>
>>
>> "protocol: *Moose-RoassalPaintings"
>> viewBlueprintComplexity
>>      <menuItem: 'Blueprint complexity' category: 'Visualize'>
>>
>>      | view |
>>      view := RTView new.
>>      self viewBlueprintOn: view.
>>      view @ RTZoomableView @ RTDraggableView.
>>      view open"WithToolbarEntitled: 'Blueprint complexity'"
>>
>>
>>
>>
>> 2015-03-05 15:40 GMT+01:00 Alexandre Bergel <[hidden email]>:
>> Hi Sebastian,
>>
>> I have just tried, and indeed, this is missing.
>> Wanna to share your fix?
>>
>> Cheers,
>> Alexandre
>>
>>
>> > On Mar 5, 2015, at 8:34 AM, Sebastian Tleye <[hidden email]> wrote:
>> >
>> > Well, I managed to do it by adding RTZoomableView @ RTDraggableView to the view.
>> >
>> > 2015-03-05 14:11 GMT+01:00 Sebastian Tleye <[hidden email]>:
>> > Hi all,
>> >
>> > I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.
>> >
>> > Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)
>> >
>> > Thanks
>> >
>> >
>> >
>> > --
>> > Sebastián Tleye
>> > _______________________________________________
>> > 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
>>
>>
>>
>> --
>> Sebastián Tleye
>> _______________________________________________
>> 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
>
>
>
>
> --
> www.tudorgirba.com
>
> "Every thing has its own flow"
> _______________________________________________
> 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



--

"Every thing has its own flow"

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

Re: Simple question about blueprint complexity visualization

abergel
But #viewBlueprintComplexity is defined in Moose-RoassalPaintings.

Alexandre


> On Mar 6, 2015, at 12:40 AM, Tudor Girba <[hidden email]> wrote:
>
> Where did you commit because I do not see it in Moose-Finder? :)
>
> Doru
>
> On Fri, Mar 6, 2015 at 12:14 AM, Alexandre Bergel <[hidden email]> wrote:
> To make the view draggable and calling #inspect instead of #open.
>
> Cheers,
> Alexandre
>
> > On Mar 5, 2015, at 2:57 PM, Tudor Girba <[hidden email]> wrote:
> >
> > What did you commit?
> >
> > Doru
> >
> > On Thu, Mar 5, 2015 at 5:53 PM, Alexandre Bergel <[hidden email]> wrote:
> > Hi!
> >
> > I have just committed. Also, instead of doing "view open" we should do "view inspect”
> >
> > I also tried to export a large visualization and put it on the web. You can open it on:
> > https://dl.dropboxusercontent.com/u/31543901/RoassalHTML/blueprint/blueprintComplexity.html
> >
> > You can drag and drop the view and use the mouse wheel for zooming.
> >
> > This is a beautiful visualization.
> >
> > <Screen Shot 2015-03-05 at 11.51.08 AM.png>
> >
> > Cheers,
> > Alexandre
> >
> >
> >> On Mar 5, 2015, at 10:38 AM, Sebastian Tleye <[hidden email]> wrote:
> >>
> >> Hi Alexandre,
> >>
> >> I think that more than a fix is a patch,
> >>
> >> however, this is what I did (in case someone has the same problem)
> >>
> >> in the method FAMIXTypeGroup>>viewBlueprintComplexity I added the @ RTZoomableView @ RTDraggableView just before the view open.
> >>
> >>
> >> "protocol: *Moose-RoassalPaintings"
> >> viewBlueprintComplexity
> >>      <menuItem: 'Blueprint complexity' category: 'Visualize'>
> >>
> >>      | view |
> >>      view := RTView new.
> >>      self viewBlueprintOn: view.
> >>      view @ RTZoomableView @ RTDraggableView.
> >>      view open"WithToolbarEntitled: 'Blueprint complexity'"
> >>
> >>
> >>
> >>
> >> 2015-03-05 15:40 GMT+01:00 Alexandre Bergel <[hidden email]>:
> >> Hi Sebastian,
> >>
> >> I have just tried, and indeed, this is missing.
> >> Wanna to share your fix?
> >>
> >> Cheers,
> >> Alexandre
> >>
> >>
> >> > On Mar 5, 2015, at 8:34 AM, Sebastian Tleye <[hidden email]> wrote:
> >> >
> >> > Well, I managed to do it by adding RTZoomableView @ RTDraggableView to the view.
> >> >
> >> > 2015-03-05 14:11 GMT+01:00 Sebastian Tleye <[hidden email]>:
> >> > Hi all,
> >> >
> >> > I am trying to analyze my system by using moose and creating a BluePrint Complexity Visualization. The problem is that the visualization is a morph without zoom or drag and is difficult to understand something.
> >> >
> >> > Is there any way to have a visualization like the one of "System Complexity"? (In which is possible to drag, to zoom and to export)
> >> >
> >> > Thanks
> >> >
> >> >
> >> >
> >> > --
> >> > Sebastián Tleye
> >> > _______________________________________________
> >> > 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
> >>
> >>
> >>
> >> --
> >> Sebastián Tleye
> >> _______________________________________________
> >> 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
> >
> >
> >
> >
> > --
> > www.tudorgirba.com
> >
> > "Every thing has its own flow"
> > _______________________________________________
> > 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
>
>
>
> --
> www.tudorgirba.com
>
> "Every thing has its own flow"
> _______________________________________________
> 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