New RTData class in Roassal

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

New RTData class in Roassal

abergel
Hi!

I have worked on a new class RTData, intended to replace RTDataSet and RTStackedDataSet. The discussion with Doru made me realize that having two classes does not make sense at all.

You can now do:
-=-=-=-=-=-=-=-=-=
b := RTGrapher new.

ds := RTData new.
ds points: #(3 2 5 1 3).

b add: ds.
b
-=-=-=-=-=-=-=-=-=
b := RTGrapher new.

ds := RTData new.
ds points: RTShape withAllSubclasses.
ds y: #numberOfMethods.
ds x: #numberOfLinesOfCode.

b add: ds.
b

-=-=-=-=-=-=-=-=-=
b := RTGrapher new.

ds := RTData new.
ds points: RTShape withAllSubclasses.
ds y: #numberOfMethods.

b add: ds.
b
-=-=-=-=-=-=-=-=-=

I have marked RTDataSet and RTStackedDataSet as obsolete.

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
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: New RTData class in Roassal

Tudor Girba-2
Awesome!

Doru

On Fri, Jul 17, 2015 at 9:49 PM, Alexandre Bergel <[hidden email]> wrote:
Hi!

I have worked on a new class RTData, intended to replace RTDataSet and RTStackedDataSet. The discussion with Doru made me realize that having two classes does not make sense at all.

You can now do:
-=-=-=-=-=-=-=-=-=
b := RTGrapher new.

ds := RTData new.
ds points: #(3 2 5 1 3).

b add: ds.
b
-=-=-=-=-=-=-=-=-=
b := RTGrapher new.

ds := RTData new.
ds points: RTShape withAllSubclasses.
ds y: #numberOfMethods.
ds x: #numberOfLinesOfCode.

b add: ds.
b

-=-=-=-=-=-=-=-=-=
b := RTGrapher new.

ds := RTData new.
ds points: RTShape withAllSubclasses.
ds y: #numberOfMethods.

b add: ds.
b
-=-=-=-=-=-=-=-=-=

I have marked RTDataSet and RTStackedDataSet as obsolete.

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
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