|
|
Hi!
How do I make 2 medias with the same settings for color_map, emission and
turbulence etc. look different as if they had used a different seed value
for their randomness?
I'm making some cloud-looking medias with the spherical pattern function,
and I need to get two clouds that look similar, to some extent (they
shouldn't be totally the same).
Thanks in advance (I hope I didn't asked for something that is in a FAQ
somewhere :-)!
Ole Laursen - Aalborg, Denmark - ole### [at] hardworkingdk
When do you want to crash today? (note: new address!)
Post a reply to this message
|
|
|
|
Ole Laursen wrote:
>
> Hi!
>
> How do I make 2 medias with the same settings for color_map, emission and
> turbulence etc. look different as if they had used a different seed value
> for their randomness?
>
> I'm making some cloud-looking medias with the spherical pattern function,
> and I need to get two clouds that look similar, to some extent (they
> shouldn't be totally the same).
>
> Thanks in advance (I hope I didn't asked for something that is in a FAQ
> somewhere :-)!
>
> Ole Laursen - Aalborg, Denmark - ole### [at] hardworkingdk
> When do you want to crash today? (note: new address!)
Try using rand() with the turbulence to vary shape.
--
Ken Tyler
mailto://tylereng@pacbell.net
Post a reply to this message
|
|
|
|
Ken's suggestion is good. Another option is to use warps. Instead of
adding regular turbulence, translate the media, and a turbulence warp,
then translate the media back to its original position.
i.e.
media {
// media options & density stuff here
translate 10*x
warp { turbulence 1 }
translate -10*x
}
Turbulence is based on the DNoise fractal noise function (which is the
similar to what bozo uses), therefore, the turbulence at one spot in space
is different from the turbulence at another spot in space.
-Nathan
Ole Laursen wrote:
>
> Hi!
>
> How do I make 2 medias with the same settings for color_map, emission and
> turbulence etc. look different as if they had used a different seed value
> for their randomness?
>
> I'm making some cloud-looking medias with the spherical pattern function,
> and I need to get two clouds that look similar, to some extent (they
> shouldn't be totally the same).
>
> Thanks in advance (I hope I didn't asked for something that is in a FAQ
> somewhere :-)!
>
> Ole Laursen - Aalborg, Denmark - ole### [at] hardworkingdk
> When do you want to crash today? (note: new address!)
Post a reply to this message
|
|