POV-Ray : Newsgroups : povray.binaries.images : More fun with sand : Re: More fun with sand Server Time
31 Jul 2024 16:28:44 EDT (-0400)
  Re: More fun with sand  
From: Alain
Date: 30 Jul 2009 16:23:45
Message: <4a720151@news.povray.org>

> Another render, with the octaves parameter to f_ridged_mf() reduced to two.
> 
> Don't mind the funny horizon in these scenes; that's an artifact of me 
> using:
> sky_sphere {
>   pigment {
>     gradient y
>     translate y * 1
>     color_map {
>       [0 rgb <0.25, 0.75, 1>]
>       [1 rgb <0, 0, 0.75>]
>     }
>   }
> }
> without an infinite ground plane.
> 
> 
> ------------------------------------------------------------------------
> 
Change your sky_sphere this way:

sky_sphere {
   pigment {
     marble rotate 90*z
     translate y * 1
     color_map {
       [0 rgb <0.25, 0.75, 1>]
       [1 rgb <0, 0, 0.75>]
     }
   }
}

or

sky_sphere {
   pigment {
     gradient y triangle_wave
     translate y * 1
     color_map {
       [0 rgb <0.25, 0.75, 1>]
       [1 rgb <0, 0, 0.75>]
     }
   }
}



Alain


Post a reply to this message

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