View previous topic :: View next topic |
Author |
Message |
schani
Joined: 18 Sep 2007 Posts: 25 Location: Vienna, Austria
|
Posted: Fri Sep 21, 2007 8:30 am Post subject: A library for interfacing D with Gnuplot |
|
|
Hi all (Dear administrators)!
I would like to register a project to write a library for interfacing D with Gnuplot. I have already done this for C++ (I never published it) and would like to transfer the code to D, as this is definitively the superior language.
The Library will be heavily inspired by Gnuplot.py, which is the best Gnuplot remote control library I know.
Greetz
Franz |
|
Back to top |
|
|
brad Site Admin
Joined: 22 Feb 2004 Posts: 490 Location: Atlanta, GA USA
|
Posted: Sun Sep 23, 2007 9:52 am Post subject: |
|
|
Do you have code already?
Do you have a short description for us?
Thanks,
BA _________________ I really like the vest! |
|
Back to top |
|
|
schani
Joined: 18 Sep 2007 Posts: 25 Location: Vienna, Austria
|
Posted: Mon Sep 24, 2007 1:29 am Post subject: |
|
|
Well... I packed up the code I have so far. It's not complete, and there is much I intend to not only add but also change on it until I do an official release, but it gives an idea of how it is implemented. How can I attach files to a message?
What I want it to get is somewhat like:
Code: | Gnuplot g1 = new Gnuplot();
Gnuplot g2 = new Gnuplot();
g1.title = "My title 1";
g1.xrange(2,5);
x = [1,2,3,4,5,6,7];
Data d = new Data(x,lines,"A test line");
Function f = new Function("x ** 2", dots, "A test Function");
g1.plot(d);
g2.plot([d,f]);
|
Well, I hope you get the idea.
As a name for this project, I would prefer "Dplot" |
|
Back to top |
|
|
schani
Joined: 18 Sep 2007 Posts: 25 Location: Vienna, Austria
|
Posted: Mon Oct 01, 2007 1:19 am Post subject: |
|
|
Is this forum inactive now, or have I done something wrong? |
|
Back to top |
|
|
div0
Joined: 10 Sep 2007 Posts: 19 Location: tedium city, uk
|
Posted: Mon Oct 01, 2007 6:12 am Post subject: |
|
|
schani wrote: | Is this forum inactive now, or have I done something wrong? |
Try email: admin AT dsource DOT org instead.
I guess whoever runs the site is busy at the mo. _________________ My enormous talent is exceeded only by my outrageous laziness. |
|
Back to top |
|
|
brad Site Admin
Joined: 22 Feb 2004 Posts: 490 Location: Atlanta, GA USA
|
Posted: Mon Oct 01, 2007 7:35 am Post subject: |
|
|
I've been traveling and transferring into a new job. It's on my list of things to do. admin@dsource.org is seen by more than just me, so it's the fastest way to get a new project right now. But I will set your project up today.
BA _________________ I really like the vest! |
|
Back to top |
|
|
brad Site Admin
Joined: 22 Feb 2004 Posts: 490 Location: Atlanta, GA USA
|
Posted: Mon Oct 01, 2007 8:32 am Post subject: |
|
|
all set. My apologies for the delay. More than one week is unacceptable.
BA _________________ I really like the vest! |
|
Back to top |
|
|
schani
Joined: 18 Sep 2007 Posts: 25 Location: Vienna, Austria
|
Posted: Mon Oct 01, 2007 1:31 pm Post subject: |
|
|
brad wrote: | I've been traveling and transferring into a new job. It's on my list of things to do. admin@dsource.org is seen by more than just me, so it's the fastest way to get a new project right now. But I will set your project up today.
BA |
Well this sounds like an awful lot of things to do. Thx 4 setting up the project. I am working on my MA thesis at the moment, so don't expect a version 1.0 by monday |
|
Back to top |
|
|
|