POV-Ray : Newsgroups : povray.general : animation and media : animation and media Server Time
11 Aug 2024 13:19:37 EDT (-0400)
  animation and media  
From: Thomas Hille
Date: 5 Jul 1999 12:15:20
Message: <3780da18@news.povray.org>
Hi!
I created a scene with a sphere containing a cloud. This works pretty fine.
But now I want to do a little animation with this scene. But the cloud ist
static. That looks a little stupid. How can I make the cloud changing? I
tried Phase, but that only affects the color_map. Anybody an idea?

Thomas

Here the code for the sphere I use:
-----
sphere { < 0, 0, 0>, 1.5
        pigment {
                color rgbf<1, 1, 1, 1>
        }
        finish {
                ambient 0
                diffuse 0
        }
        interior {
                media

                        scattering { 1, rgb < 1, 0.125, 0.125 > }
                        intervals 5
                        samples 1, 10
                        confidence 0.9999
                        variance 1/1000
                        density {
                                spherical
                                ramp_wave
                                color_map {
                                        [0.0 color rgb <0, 0, 0>]
                                        [0.3 color rgb <0.5, 0, 0>]
                                        [1.0 color rgb <1, 0.5, 0.5>]
                                }
                                turbulence 1
                        }
                }
        }
        hollow
        translate < 0, 0, -1 >
}
-----


Post a reply to this message

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