POV-Ray : Newsgroups : povray.binaries.images : How I did the rolling fog, (with no media) Server Time
4 Oct 2024 01:17:51 EDT (-0400)
  How I did the rolling fog, (with no media) (Message 1 to 5 of 5)  
From: Johnny Smith
Subject: How I did the rolling fog, (with no media)
Date: 2 May 1999 06:47:07
Message: <372C1F3F.BEDD81A8@telebot.net>
Well,  without the heightfield posted as well,   and the image
maps as well,  it would be hard to perfectly recreate this.  But the
relevant source is at the bottom.  If anyone wants the complete
source/picture.  (including the meshes used for the trees,  let me know)

But I can tell you this.  I used a ground fog... cranked the turbulence
up
to something stupid like 119.  Made the fog height and the fog falloff
almost the same.. so that there was no gradual increase in fog density.
In otherwords,  I crushed the fog more or less to where it was a
constant
density from top to bottom. Next,  I used a fairly smooth heightfield.
(but not entirely smooth)
Laid the fog very close to the ground.  What made the fog look "patchy"
and intermittent was the fact that the
heightfield poked through the top of the  fog.  Effectively cutting it
in 2.  (in places)



// WHITE FOG
fog
{
  fog_type   2
  distance   0.08
  color rgbt  <0.7, 0.7, 0.7 0.1> // gray
  fog_offset -0.09  // height at which has a constant density
  fog_alt    0.03  //falloff rate
  turbulence 119.8 octaves 2 omega 8.0  lambda 2.0
  turb_depth 6
}


height_field
{
  tga "heightfield.tga"
  scale <180, 2.2, 220>
  translate <-50, -1, -5>
  smooth
  texture { pigment {image_map { tga "c:\povray\texture_maps\grass.tga"
interpolate 2}
                     rotate x*90
                    }translate <40, 0, 0>
          }
  water_level -1
}


Post a reply to this message


Attachments:
Download 'hell.png' (196 KB)

Preview of image 'hell.png'
hell.png


 

From: Lewis
Subject: Re: How I did the rolling fog, (with no media)
Date: 2 May 1999 09:42:48
Message: <372C491C.F1A6C1AF@netvision.net.il>
Oh goody, the usual violent technique. I like to reffer to it as "If you
can't beat'em, CRUSH'EM!"
Not bad at all!

Johnny Smith wrote:
> 
>       Well,  without the heightfield posted as well,   and the image
> maps as well,  it would be hard to perfectly recreate this.  But the
> relevant source is at the bottom.  If anyone wants the complete
> source/picture.  (including the meshes used for the trees,  let me know)
> 
> But I can tell you this.  I used a ground fog... cranked the turbulence
> up
> to something stupid like 119.  Made the fog height and the fog falloff
> almost the same.. so that there was no gradual increase in fog density.
> In otherwords,  I crushed the fog more or less to where it was a
> constant
> density from top to bottom. Next,  I used a fairly smooth heightfield.
> (but not entirely smooth)
> Laid the fog very close to the ground.  What made the fog look "patchy"
> and intermittent was the fact that the
> heightfield poked through the top of the  fog.  Effectively cutting it
> in 2.  (in places)
> 
> // WHITE FOG
> fog
> {
>   fog_type   2
>   distance   0.08
>   color rgbt  <0.7, 0.7, 0.7 0.1> // gray
>   fog_offset -0.09  // height at which has a constant density
>   fog_alt    0.03  //falloff rate
>   turbulence 119.8 octaves 2 omega 8.0  lambda 2.0
>   turb_depth 6
> }
> 
> height_field
> {
>   tga "heightfield.tga"
>   scale <180, 2.2, 220>
>   translate <-50, -1, -5>
>   smooth
>   texture { pigment {image_map { tga "c:\povray\texture_maps\grass.tga"
> interpolate 2}
>                      rotate x*90
>                     }translate <40, 0, 0>
>           }
>   water_level -1
> }
> 
>   ------------------------------------------------------------------------
>  [Image]


Post a reply to this message

From: Rick (Kitty5)
Subject: Re: How I did the rolling fog, (with no media)
Date: 2 May 1999 09:44:20
Message: <372c48a4.0@news.povray.org>
What whould this look like it a daylight scene?

Rick


Post a reply to this message

From: Johnny Smith
Subject: Re: How I did the rolling fog, (with no media)
Date: 2 May 1999 10:19:45
Message: <372C5170.A1D82A74@telebot.net>
"Rick (Kitty5)" wrote:

> What whould this look like it a daylight scene?
>
> Rick

        Rick,  I'm not sure.  Maybe I'll try it.  I simply put a
poitnlight directly over ahead about 40 units high.
rgb <1, 1, 1>  And I'll render it.  I'll send you the picture and let
you know.
I'm thinking just simply a brighter version of itself,  all the way
around.


Post a reply to this message

From: Thomas Lake
Subject: Re: How I did the rolling fog, (with no media)
Date: 2 May 1999 20:20:56
Message: <372CDDD3.8C2D2D51@home.com>
I'm not one to complain but you already posted this a little way down. If you
wanted to post if again it would be better if you left the image out the
second time and just pointed people to the original a few posts down. Also you
might want to consider posting the source in povray.text.scene-files. Anyway
its a very nice image, perhaps it needs more light. A dime light with noshadow
on would help to light up the trees. Also as someone else suggested the light
looks like its coming from the moon so either move the main light or create a
moon in the scene.

Johnny Smith wrote:

>       Well,  without the heightfield posted as well,   and the image
> maps as well,  it would be hard to perfectly recreate this.  But the
> relevant source is at the bottom.  If anyone wants the complete
> source/picture.  (including the meshes used for the trees,  let me know)
>
> But I can tell you this.  I used a ground fog... cranked the turbulence
> up
> to something stupid like 119.  Made the fog height and the fog falloff
> almost the same.. so that there was no gradual increase in fog density.
> In otherwords,  I crushed the fog more or less to where it was a
> constant
> density from top to bottom. Next,  I used a fairly smooth heightfield.
> (but not entirely smooth)
> Laid the fog very close to the ground.  What made the fog look "patchy"
> and intermittent was the fact that the
> heightfield poked through the top of the  fog.  Effectively cutting it
> in 2.  (in places)
>
> // WHITE FOG
> fog
> {
>   fog_type   2
>   distance   0.08
>   color rgbt  <0.7, 0.7, 0.7 0.1> // gray
>   fog_offset -0.09  // height at which has a constant density
>   fog_alt    0.03  //falloff rate
>   turbulence 119.8 octaves 2 omega 8.0  lambda 2.0
>   turb_depth 6
> }
>
> height_field
> {
>   tga "heightfield.tga"
>   scale <180, 2.2, 220>
>   translate <-50, -1, -5>
>   smooth
>   texture { pigment {image_map { tga "c:\povray\texture_maps\grass.tga"
> interpolate 2}
>                      rotate x*90
>                     }translate <40, 0, 0>
>           }
>   water_level -1
> }
>
>   ------------------------------------------------------------------------
>  [Image]


Post a reply to this message

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