|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I was considering writing a webserver, except I don't know how to suppress all
the text that scrolls by upon program launch.
Post a reply to this message
|
|
| |
| |
|
|
From: Nicolas Alvarez
Subject: Re: Anyone use Povray for things other than making images?
Date: 24 Jan 2008 20:55:51
Message: <479941a7@news.povray.org>
|
|
|
| |
| |
|
|
> I was considering writing a webserver, except I don't know how to suppress all
> the text that scrolls by upon program launch.
A Webserver made in POV-Ray SDL??
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Sure. A very basic minimal webserver just outputs text in a certain way.
Nicolas Alvarez <nic### [at] gmailisthebestcom> wrote:
> > I was considering writing a webserver, except I don't know how to suppress all
> > the text that scrolls by upon program launch.
>
> A Webserver made in POV-Ray SDL??
Post a reply to this message
|
|
| |
| |
|
|
From: nemesis
Subject: Re: Anyone use Povray for things other than making images?
Date: 24 Jan 2008 22:05:40
Message: <47995204$1@news.povray.org>
|
|
|
| |
| |
|
|
Nicolas Alvarez escreveu:
>> I was considering writing a webserver, except I don't know how to
>> suppress all
>> the text that scrolls by upon program launch.
>
> A Webserver made in POV-Ray SDL??
lets give him his deserved geek gold medal... :)
Post a reply to this message
|
|
| |
| |
|
|
From: Tim Attwood
Subject: Re: Anyone use Povray for things other than making images?
Date: 24 Jan 2008 22:18:30
Message: <47995506@news.povray.org>
|
|
|
| |
| |
|
|
>I was considering writing a webserver, except I don't know how to suppress
>all
> the text that scrolls by upon program launch.
You would need to find a version of POV compiled
with the splash removed to suppress all the windows on
your server... I think the Linux version is that way.
For the windows version you could do (from CMD)...
pvengine /EXIT +I"file.pov" -d -ga +W640 +H480
where -d turns off the render preview window,
and -ga turns off the output to the message window,
and set the Options | Other Settings | Use Editor to
off from inside POV to keep the editor from loading
but the splash screen and message startup will still show.
Of course you could set up a virtual PC and allow it
to pop up whatever it wants, since you can hide everthing
anyways. Crashes would be less likely to change anything
important then too.
http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx
Post a reply to this message
|
|
| |
| |
|
|
From: Darren New
Subject: Re: Anyone use Povray for things other than making images?
Date: 24 Jan 2008 22:31:57
Message: <4799582d$1@news.povray.org>
|
|
|
| |
| |
|
|
jhu wrote:
> I was considering writing a webserver,
I wasn't aware SDL had the ability to listen on sockets. :-)
--
Darren New / San Diego, CA, USA (PST)
It's not feature creep if you put it
at the end and adjust the release date.
Post a reply to this message
|
|
| |
| |
|
|
From: Nicolas Alvarez
Subject: Re: Anyone use Povray for things other than making images?
Date: 24 Jan 2008 23:16:44
Message: <479962ac$1@news.povray.org>
|
|
|
| |
| |
|
|
> jhu wrote:
>> I was considering writing a webserver,
>
> I wasn't aware SDL had the ability to listen on sockets. :-)
>
inetd?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I was hoping not to have to muck around in the source code, but there's no way
to turn off the banner messages without doing so (even on the unix versions). Oh
well.
"Tim Attwood" <tim### [at] comcastnet> wrote:
> >I was considering writing a webserver, except I don't know how to suppress
> >all
> > the text that scrolls by upon program launch.
>
> You would need to find a version of POV compiled
> with the splash removed to suppress all the windows on
> your server... I think the Linux version is that way.
> For the windows version you could do (from CMD)...
>
> pvengine /EXIT +I"file.pov" -d -ga +W640 +H480
>
> where -d turns off the render preview window,
> and -ga turns off the output to the message window,
>
> and set the Options | Other Settings | Use Editor to
> off from inside POV to keep the editor from loading
>
> but the splash screen and message startup will still show.
>
> Of course you could set up a virtual PC and allow it
> to pop up whatever it wants, since you can hide everthing
> anyways. Crashes would be less likely to change anything
> important then too.
> http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx
Post a reply to this message
|
|
| |
| |
|
|
From: Alain
Subject: Re: Anyone use Povray for things other than making images?
Date: 25 Jan 2008 11:23:18
Message: <479a0cf6$1@news.povray.org>
|
|
|
| |
| |
|
|
Tim Attwood nous apporta ses lumieres en ce 2008/01/24 22:18:
>> I was considering writing a webserver, except I don't know how to suppress
>> all
>> the text that scrolls by upon program launch.
>
> You would need to find a version of POV compiled
> with the splash removed to suppress all the windows on
> your server... I think the Linux version is that way.
> For the windows version you could do (from CMD)...
>
> pvengine /EXIT +I"file.pov" -d -ga +W640 +H480
>
> where -d turns off the render preview window,
> and -ga turns off the output to the message window,
>
> and set the Options | Other Settings | Use Editor to
> off from inside POV to keep the editor from loading
>
> but the splash screen and message startup will still show.
>
> Of course you could set up a virtual PC and allow it
> to pop up whatever it wants, since you can hide everthing
> anyways. Crashes would be less likely to change anything
> important then too.
> http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx
>
>
>
The splash only show once. So, after any operation, KEEP POV-Ray up and running.
NO /exit switch!
pvengine +I"file.pov" -d -ga +W640 +H480
or
pvengine /RENDER +I"file.pov" -d -ga +W640 +H480
--
Alain
-------------------------------------------------
To the world you may be one person, but to one person you may be the world.
Post a reply to this message
|
|
| |
| |
|
|
From: Tor Olav Kristensen
Subject: Re: Anyone use Povray for things other than making images?
Date: 25 Jan 2008 15:05:09
Message: <479a40f5$1@news.povray.org>
|
|
|
| |
| |
|
|
Yes,
For calculations with matrices, polynomials, vectors, complex numbers,
quaternions etc.
--
Tor Olav
http://subcube.com
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |