|
From: KITA T. <t-...@cc...> - 2005-01-27 09:29:05
|
I am astonished to see the thread starting with From: Varoquaux <varoquau@cl...> Povray terminal output 2005-01-16 06:02 . # I am sorry I can not append my mail to the thread. I just submitted. > This is a bit a crazy idea, but I was wondering if it would be possible to > have a povray terminal output for gnuplot, a bit like the latex terminal. I and one of my students, Miyata, are currently working on the POV-Ray and VRML terminal of gnuplot. For several months we have explored and modified the source files under src/, and it is beginning to work now. It is just a alpha-version and not so neatly written. Maybe in several weeks we can provide our patch file to add these two terminals here at this ML. Followings are the sample images created by povray (originally TGA formatted) with our output files : (only 'plotting with points' is possible now) http://alt.cc.kumamoto-u.ac.jp/tmp/tt1.jpg http://alt.cc.kumamoto-u.ac.jp/tmp/tt2.jpg http://alt.cc.kumamoto-u.ac.jp/tmp/tt3.jpg Output files are like this : http://alt.cc.kumamoto-u.ac.jp/tmp/tt1.pov -- KITA Toshihiro http://t-kita.net/ PGP-Key: http://t-kita.net/pubkey.asc fingerprint : CBFF 6A61 5990 10F5 B4B6 D2E8 279A 7063 CF8B 6339 |
|
From: Harald H. <h.h...@tu...> - 2005-01-28 23:38:48
|
On Thu, 27 Jan 2005, KITA Toshihiro wrote:
> I and one of my students, Miyata, are currently working on the
> POV-Ray and VRML terminal of gnuplot.
[...]
> It is just a alpha-version and not so neatly written.
> Maybe in several weeks we can provide our patch file to add these two
> terminals here at this ML.
Just a few comments:
- Your povray file is buggy. You are using #macro defines and state that
you have version 3.0. Please use
#version 3.1
- Have you thought of adding spheres to the end of cylinders? This would
make the output much nicer.
Please try it with my changes:
--- tt1.pov 2005-01-27 09:21:12.000000000 +0100
+++ tt1a.pov 2005-01-29 00:38:23.000000000 +0100
@@ -1,4 +1,4 @@
-#version 3.0
+#version 3.1
#include "colors.inc"
#include "shapes.inc"
#include "textures.inc"
@@ -40,6 +40,13 @@
cylinder{<0,12.5,0><50,12.5,0>,0.2}
cylinder{<0,25,0><50,25,0>,0.2}
cylinder{<0,37.5,0><50,37.5,0>,0.2}
+sphere{<50,50,-40>,0.5}
+sphere{<0,0,-40>,0.5}
+sphere{<0,50,-40>,0.5}
+sphere{<0,0,0>,0.5}
+sphere{<0,50,0>,0.5}
+sphere{<50,50,0>,0.5}
+sphere{<50,0,0>,0.5}
text{ ttf "crystal.ttf","-2",0.1,0
pigment{White}
scale 4
Regards,
Harald
--
Harald Harders
h.h...@tu...
http://www.harald-harders.de
|
|
From: KITA T. <t-...@cc...> - 2005-01-29 13:40:29
|
I am very glad to have your comments.
# I am curious about how much interested gnuplot users are in our
# POV-Ray and VRML term.
From: Harald Harders
Subject: Re: Now working on POV-Ray terminal
Date: Sat, 29 Jan 2005 00:39:49 +0100 (CET)
> On Thu, 27 Jan 2005, KITA Toshihiro wrote:
>
> > I and one of my students, Miyata, are currently working on the
> > POV-Ray and VRML terminal of gnuplot.
>
> [...]
>
> > It is just a alpha-version and not so neatly written.
> > Maybe in several weeks we can provide our patch file to add these two
> > terminals here at this ML.
>
> Just a few comments:
>
> - Your povray file is buggy. You are using #macro defines and state that
> you have version 3.0. Please use
> #version 3.1
Oh, I was always testing files with povray 3.1g. (included in the
Linux distribution called Vine commonly used in Japan)
I just found the latest version of POV-Ray is 3.6.1.
I guess it would be better to write
#version 3.6;
And moreover, warnings like
File: tt1.pov Line: 58
Parse Warning: Degenerate CSG bounding box (not used!).
...
still remain.
From now on I will use povray 3.6.1 for testing.
> - Have you thought of adding spheres to the end of cylinders? This would
> make the output much nicer.
>
> Please try it with my changes:
>
> --- tt1.pov 2005-01-27 09:21:12.000000000 +0100
> +++ tt1a.pov 2005-01-29 00:38:23.000000000 +0100
> @@ -1,4 +1,4 @@
> -#version 3.0
> +#version 3.1
> #include "colors.inc"
> #include "shapes.inc"
> #include "textures.inc"
> @@ -40,6 +40,13 @@
> cylinder{<0,12.5,0><50,12.5,0>,0.2}
> cylinder{<0,25,0><50,25,0>,0.2}
> cylinder{<0,37.5,0><50,37.5,0>,0.2}
> +sphere{<50,50,-40>,0.5}
> +sphere{<0,0,-40>,0.5}
> +sphere{<0,50,-40>,0.5}
> +sphere{<0,0,0>,0.5}
> +sphere{<0,50,0>,0.5}
> +sphere{<50,50,0>,0.5}
> +sphere{<50,0,0>,0.5}
> text{ ttf "crystal.ttf","-2",0.1,0
> pigment{White}
> scale 4
That is a nice suggestion.
We will change the program according to your suggestion.
Any questions and comments are welcomed. > all
--
KITA Toshihiro
http://t-kita.net/
|
|
From: V. <var...@cl...> - 2005-02-03 08:32:54
|
KITA Toshihiro <t-kita <at> cc.kumamoto-u.ac.jp> writes: > I am astonished to see the thread starting with Sorry, I did Google a bit on such a subject but apperntly not enough. > I and one of my students, Miyata, are currently working on the > POV-Ray and VRML terminal of gnuplot. This is very good new. I was going to give it a try, but I am definitely not a good coder and it would have been quite hard for me, especially since I have very little time to spend on this. If I can be of any help don't hesitate, but I must warn you, I am not an IT professional therefore my ability to read or write code is quite low, and I have started using povray only two month ago. However this is a project I find very exiting, both for my own use, and for gnuplot's future and I am more than willing to help. Gaël |
|
From: KITA T. <t-...@cc...> - 2005-02-04 15:59:54
|
From: Ga=EBl Varoquaux <var...@cl...> Subject: Re: Now working on POV-Ray terminal > KITA Toshihiro <t-kita <at> cc.kumamoto-u.ac.jp> writes: > = > = > > I am astonished to see the thread starting with > = > Sorry, I did Google a bit on such a subject but apperntly not enoug= h. That is not so. That e-mail I sent is the first announcement of our = development. You can see what we previously developed at http://t-kita.net/webplot/ http://t-kita.net/som/ but, they are not directly related to gnuplot. # Actually the POV-Ray terminal codes began to work only one or two # weeks before. > > I and one of my students, Miyata, are currently working on the > > POV-Ray and VRML terminal of gnuplot. > = > This is very good new. I was going to give it a try, but I am defi= nitely not > a good coder and it would have been quite hard for me, especially si= nce I have > very little time to spend on this. Honestly, we are not so good at coding either. Our codes are simply made after trials and errors, so I am afraid = gnuplot developers will be disappointed at our dirty codes. > If I can be of any help don't hesitate, but I must warn you, I am = not an IT > professional therefore my ability to read or write code is quite low,= and I have > started using povray only two month ago. However this is a project I = find very > exiting, both for my own use, and for gnuplot's future and I am more = than > willing to help. > = > Ga=EBl I am glad you are intereted in our work. Unlike other popular GUI-based plotting tools, gnuplot can be easily dr= iven by CUI-based commands and scripts. That is why I love to use gnuplot and I want to add virtual-reality terminals to it. Anyway, we would like to release the patch file as soon as possible. # to avoid excessive expectations. :-) -- = KITA Toshihiro http://t-kita.net/ PGP-Key: http://t-kita.net/pubkey.asc fingerprint : CBFF 6A61 5990 10F5 B4B6 D2E8 279A 7063 CF8B 6339 |
|
From: V. <var...@cl...> - 2005-02-04 19:03:47
|
KITA Toshihiro <t-kita <at> cc.kumamoto-u.ac.jp> writes: > Anyway, we would like to release the patch file as soon as possible. > # to avoid excessive expectations. Anything that works is a starting point, and therefore a great progress, I find. It gives a basis to start building on. I am very much looking forward to see your work. Could you please Cc. me for issues concerning the povray terminal, as I am not a subscirber of the mailing list. Good luck with your work, Gaël |