POV-Ray : Newsgroups : povray.general : No ground fog, why? Server Time
9 Aug 2024 03:21:07 EDT (-0400)
  No ground fog, why? (Message 4 to 13 of 13)  
<<< Previous 3 Messages Goto Initial 10 Messages
From: Chuck Roberts
Subject: Re: No ground fog, why?
Date: 20 Sep 2000 11:20:53
Message: <39C8D5CA.457A2CF7@alleganisd.org>
Thank you, that worked. The help file led me to believe that
"distance" was only for type 1 fog. 

Thorsten Froehlich wrote:
> 
> In article <39c8cb76@news.povray.org> , "Bob Hughes"
> <per### [at] aolcom?subject=PoV-News:> wrote:
> 
> Now to the problem. Simply add the "distance [value]" to the fog statement,
> for example:
> 
> fog { fog_type 2 //Layer: Layer2
>     rgb <0.620, 0.000, 0.000>
>     distance  20
>     fog_offset 6
>     fog_alt 0.5 //fade away rate
> } //fog
> 
> This will make the fog very visible.
> 
>       Thorsten

-- 
See my Free stuff page. It compares free website providers, and
lists free internet access providers.
http://www.crosswinds.net/~robertsc/free.htm

Win98 help file loaded with hints and tips, including securing a
Win 95/98 PC in a classroom setting. VB4 help file with lots of
code and hints. 
At http://www.crosswinds.net/~robertsc/


Post a reply to this message

From: Chuck Roberts
Subject: Re: No ground fog, why?
Date: 20 Sep 2000 11:21:04
Message: <39C8D5D6.5C59A7B7@alleganisd.org>
Thank you, that worked. The help file led me to believe that
"distance" was only for type 1 fog. 

Thorsten Froehlich wrote:
> 
> In article <39c8cb76@news.povray.org> , "Bob Hughes"
> <per### [at] aolcom?subject=PoV-News:> wrote:
> 
> Now to the problem. Simply add the "distance [value]" to the fog statement,
> for example:
> 
> fog { fog_type 2 //Layer: Layer2
>     rgb <0.620, 0.000, 0.000>
>     distance  20
>     fog_offset 6
>     fog_alt 0.5 //fade away rate
> } //fog
> 
> This will make the fog very visible.
> 
>       Thorsten

-- 
See my Free stuff page. It compares free website providers, and
lists free internet access providers.
http://www.crosswinds.net/~robertsc/free.htm

Win98 help file loaded with hints and tips, including securing a
Win 95/98 PC in a classroom setting. VB4 help file with lots of
code and hints. 
At http://www.crosswinds.net/~robertsc/


Post a reply to this message

From: Fabien Hénon
Subject: Re: No ground fog, why?
Date: 20 Sep 2000 17:03:50
Message: <39C926BB.1B23DBF2@club-internet.fr>
Just for a try. Does 'inverse' to the plane resolve the problem as well ?

Fabien H



> Thank you, that worked. The help file led me to believe that
> "distance" was only for type 1 fog.
>
> Thorsten Froehlich wrote:
> >
> > In article <39c8cb76@news.povray.org> , "Bob Hughes"
> > <per### [at] aolcom?subject=PoV-News:> wrote:
> >
> > Now to the problem. Simply add the "distance [value]" to the fog statement,
> > for example:
> >
> > fog { fog_type 2 //Layer: Layer2
> >     rgb <0.620, 0.000, 0.000>
> >     distance  20
> >     fog_offset 6
> >     fog_alt 0.5 //fade away rate
> > } //fog
> >
> > This will make the fog very visible.
> >
> >       Thorsten
>
> --
> See my Free stuff page. It compares free website providers, and
> lists free internet access providers.
> http://www.crosswinds.net/~robertsc/free.htm
>
> Win98 help file loaded with hints and tips, including securing a
> Win 95/98 PC in a classroom setting. VB4 help file with lots of
> code and hints.
> At http://www.crosswinds.net/~robertsc/


Post a reply to this message

From: Bob Hughes
Subject: Re: No ground fog, why?
Date: 20 Sep 2000 23:07:35
Message: <39c97b77@news.povray.org>
"Thorsten Froehlich" <tho### [at] trfde> wrote in message
news:39c8d2d0$1@news.povray.org...
| In article <39c8cb76@news.povray.org> , "Bob Hughes"
| <per### [at] aolcom?subject=PoV-News:> wrote:
|
| > Put the keyword "hollow" into the sky_sphere.
|
| This is nonsense.  They keyword hollow does not belong in the sky_sphere
(in
| fact it won't work there at all!).   sky_sphere does not have any volume,
it
| is infinite - otherwise you would also get the "camera in non-hollow
object"
| warning!   sky_spheres are explained in the POV-Ray manual.

Curiously the Scene Help doesn't mention that fact in the section The Sky
Sphere or the fog sections either from what I could see there.
I hate to lead people astray like that, sorry.  Glad you corrected me
Thorsten.
I still use sphere instead of sky_sphere so much it's second nature to add
hollow to that anyway.  Guess when I make the mistake and get the error when
putting hollow into one that I don't think twice about it and remove it.

Bob


Post a reply to this message

From: Bob Hughes
Subject: Re: No ground fog, why?
Date: 20 Sep 2000 23:09:44
Message: <39c97bf8$1@news.povray.org>

news:39C926BB.1B23DBF2@club-internet.fr...
| Just for a try. Does 'inverse' to the plane resolve the problem as well ?

Shouldn't.  The normal of a plane isn't flipped when the float is negative,
only when the plane normal itself is negative.  Inside and outside of a
plane remains constant otherwise.  Unless I'm wrong about that too.

Bob


Post a reply to this message

From: Ken
Subject: Re: No ground fog, why?
Date: 20 Sep 2000 23:33:59
Message: <39C980FA.40792639@pacbell.net>
Bob Hughes wrote:

> Curiously the Scene Help doesn't mention that fact in the section The Sky
> Sphere or the fog sections either from what I could see there.

You may be suffering from one of those misconceptions that Warp has
been talking about. A sky_sphere is not a sphere object. It is more
like the background feature that has spherical pigment properties.

-- 
Ken Tyler - 1400+ POV-Ray, Graphics, 3D Rendering, and Raytracing Links:
http://home.pacbell.net/tylereng/index.html http://www.povray.org/links/


Post a reply to this message

From: Warp
Subject: Re: No ground fog, why?
Date: 21 Sep 2000 02:52:00
Message: <39c9b010@news.povray.org>
Thorsten Froehlich <tho### [at] trfde> wrote:
:> Put the keyword "hollow" into the sky_sphere.

: This is nonsense.  They keyword hollow does not belong in the sky_sphere (in
: fact it won't work there at all!).   sky_sphere does not have any volume, it
: is infinite - otherwise you would also get the "camera in non-hollow object"
: warning!   sky_spheres are explained in the POV-Ray manual.

  Perhaps it could be a good idea to actually TEST the suggestion between
posting it. :)

-- 
main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
):_;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/


Post a reply to this message

From: Warp
Subject: Re: No ground fog, why?
Date: 21 Sep 2000 02:55:29
Message: <39c9b0e1@news.povray.org>
Bob Hughes <per### [at] aolcom?subject=pov-news:> wrote:
: I still use sphere instead of sky_sphere so much it's second nature to add
: hollow to that anyway.

  Ever considered using 'inverse' instead?

  If you don't inverse your sky sphere you will be looking at its surface
from the inside and thus the normal vectors will be pointing at the wrong
side producing a possibly unwanted result.

-- 
main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
):_;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/


Post a reply to this message

From: Bob Hughes
Subject: Re: No ground fog, why?
Date: 21 Sep 2000 16:32:52
Message: <39ca7074$1@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote in message
news:39c9b0e1@news.povray.org...
| Bob Hughes <per### [at] aolcom?subject=pov-news:> wrote:
| : I still use sphere instead of sky_sphere so much it's second nature to
add
| : hollow to that anyway.
|
|   Ever considered using 'inverse' instead?
|
|   If you don't inverse your sky sphere you will be looking at its surface
| from the inside and thus the normal vectors will be pointing at the wrong
| side producing a possibly unwanted result.

Sage advice, thanks Warp.  I'll certainly try that.

Bob


Post a reply to this message

From: Bob Hughes
Subject: Re: No ground fog, why?
Date: 21 Sep 2000 16:34:37
Message: <39ca70dd@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote in message
news:39c9b010@news.povray.org...
| Thorsten Froehlich <tho### [at] trfde> wrote:
| :> Put the keyword "hollow" into the sky_sphere.
|
| : This is nonsense.  They keyword hollow does not belong in the sky_sphere
(in
| : fact it won't work there at all!).   sky_sphere does not have any
volume, it
| : is infinite - otherwise you would also get the "camera in non-hollow
object"
| : warning!   sky_spheres are explained in the POV-Ray manual.
|
|   Perhaps it could be a good idea to actually TEST the suggestion between
| posting it. :)

Yes, well I do when I'm 50% unsure.  I was 99% sure hollow went into
sky_sphere.

Bob


Post a reply to this message

<<< Previous 3 Messages Goto Initial 10 Messages

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.