|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I can't find my copy of the macro that placed your name in front of the
camera. Has anyone got a copy they can e-mail me? And who made it?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Bill DeWitt wrote:
>
> I can't find my copy of the macro that placed your name in front of the
> camera. Has anyone got a copy they can e-mail me? And who made it?
I don't recall such a macro but there is a utility that will imprint an
image with your name at:
http://www.public.usit.net/lsellers/raytracing.html
--
Ken Tyler - 1200+ Povray, Graphics, 3D Rendering, and Raytracing Links:
http://home.pacbell.net/tylereng/index.html http://www.povray.org/links/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I think that I got my copy from ????
I know that I made adjustments and then
sent it back to him and the ng's but his name
escapes me. I will dig my copy off the HD and
email you.
Mr. Art
Bill DeWitt wrote:
> I can't find my copy of the macro that placed your name in front of the
> camera. Has anyone got a copy they can e-mail me? And who made it?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Thanks! That was it. I am going to merge it with a couple of other things
and make an include that will fully document my images and animations. I
will post it when (if) I ever get it done.
mr.art <mr.### [at] gcinet> wrote in message news:38270FBF.83DF8D3F@gci.net...
> I think that I got my copy from ????
> I know that I made adjustments and then
> sent it back to him and the ng's but his name
> escapes me. I will dig my copy off the HD and
> email you.
> Mr. Art
>
> Bill DeWitt wrote:
>
> > I can't find my copy of the macro that placed your name in front of the
> > camera. Has anyone got a copy they can e-mail me? And who made it?
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
OK, another one. I found the macro to get the time using the #fopen
directive, but I can't find the gettime.bat that it uses. Almost certainly
lost with the hard drive.
It was a batch file to write to a file called gottime.txt I wrote a batch
file to pipe the "time" command to that file but it doesn't seem to write it
correctly. I get a type mismatch error, probably because of the minus signs
in the text string.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I meant to say the minus signs in the "date" command...
...maybe there isn't a way around that.
Bill DeWitt <the### [at] earthlinknet> wrote in message
news:382755b1@news.povray.org...
>
> OK, another one. I found the macro to get the time using the #fopen
> directive, but I can't find the gettime.bat that it uses. Almost certainly
> lost with the hard drive.
>
> It was a batch file to write to a file called gottime.txt I wrote a batch
> file to pipe the "time" command to that file but it doesn't seem to write
it
> correctly. I get a type mismatch error, probably because of the minus
signs
> in the text string.
>
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
mr.art wrote:
>I think that I got my copy from ????
>I know that I made adjustments and then
>sent it back to him and the ng's but his
>name escapes me. I will dig my copy off
>the HD and email you.
>Mr. Art
Lets see...
I originally made it as an include file.
Then you (Mr. Art) made it into a macro.
Bill, if you want to make it back into
an include file I can send you the
original include file if you are
interested.
What exactly will your include file be
doing?
Greetings,
Rune
---
Updated October 17: http://rsj.mobilixnet.dk
Containing 3D images, stereograms, tutorials,
The POV Desktop Theme, 350+ raytracing jokes,
miscellaneous other things, and a lot of fun!
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Rune <run### [at] inamecom> wrote
>
> Bill, if you want to make it back into
> an include file I can send you the
> original include file if you are
> interested.
Well, I already rewrote it but I would like to see your original if you
don't mind.
> What exactly will your include file be
> doing?
I want to Stamp date, time, frame #, file name and copyright information in
small text at the bottom of each frame or image. I am setting up a stack of
.ini files and batch files and .inc files to do this. Any suggestions would
be appreciated.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I have that. Here 'tis:
@echo off
echo " > gottime.txt
echo | more | time | find "Current" >> gottime.txt
echo "; >> gottime.txt
c:\progra~1\pov-ra~1.1\bin\pvengine.exe /render
c:\progra~1\pov-ra~1.1\scenes\gettime.pov
exit
Save as Gettime.bat
Bob
Bill DeWitt <the### [at] earthlinknet> wrote in message
news:38275699@news.povray.org...
> I meant to say the minus signs in the "date" command...
> ...maybe there isn't a way around that.
>
> Bill DeWitt <the### [at] earthlinknet> wrote in message
> news:382755b1@news.povray.org...
> >
> > OK, another one. I found the macro to get the time using the #fopen
> > directive, but I can't find the gettime.bat that it uses. Almost
certainly
> > lost with the hard drive.
> >
> > It was a batch file to write to a file called gottime.txt I wrote a
batch
> > file to pipe the "time" command to that file but it doesn't seem to
write
> it
> > correctly. I get a type mismatch error, probably because of the minus
> signs
> > in the text string.
> >
> >
>
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I forgot the quotes, it works great now.
Next question, is there anyway to get the name of the file that is being
parsed and #declare it as a text string to be read in that file? So that I
can lable my images with the file name without having to type it in
everytime I render an incremented file name?
Uh, more importantly, is there a fix for the Help file? Mine is almost
unusable as it is...
omniVERSE <inv### [at] aolcom> wrote in message
news:3827605a@news.povray.org...
> I have that. Here 'tis:
>
> @echo off
> echo " > gottime.txt
> echo | more | time | find "Current" >> gottime.txt
> echo "; >> gottime.txt
> c:\progra~1\pov-ra~1.1\bin\pvengine.exe /render
> c:\progra~1\pov-ra~1.1\scenes\gettime.pov
> exit
>
> Save as Gettime.bat
>
> Bob
>
> Bill DeWitt <the### [at] earthlinknet> wrote in message
> news:38275699@news.povray.org...
> > I meant to say the minus signs in the "date" command...
> > ...maybe there isn't a way around that.
> >
> > Bill DeWitt <the### [at] earthlinknet> wrote in message
> > news:382755b1@news.povray.org...
> > >
> > > OK, another one. I found the macro to get the time using the #fopen
> > > directive, but I can't find the gettime.bat that it uses. Almost
> certainly
> > > lost with the hard drive.
> > >
> > > It was a batch file to write to a file called gottime.txt I wrote a
> batch
> > > file to pipe the "time" command to that file but it doesn't seem to
> write
> > it
> > > correctly. I get a type mismatch error, probably because of the minus
> > signs
> > > in the text string.
> > >
> > >
> >
> >
>
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |