POV-Ray : Newsgroups : povray.binaries.tutorials : Making a hollow sphere cloud like and fluffy! Server Time
24 Apr 2024 00:52:05 EDT (-0400)
  Making a hollow sphere cloud like and fluffy! (Message 1 to 1 of 1)  
From: Elija
Subject: Making a hollow sphere cloud like and fluffy!
Date: 17 Apr 2007 11:30:03
Message: <web.4624e7554e55cc587fd315660@news.povray.org>
I have attached a partial screen shot taken part way through a render so I
can try and describe what I have so far been unable to do.

As you can see, the top of the sphere is very sharply delineated whereas the
effect I am after is the more cloud like effect that you can see at the
bottom of it.

This is the code for one of the spheres in the image.

==============  Code begins  ================================
union {
 light_source {
  <0, 1, 2>
  color Red
  looks_like {
   sphere {
    <0, 1, 2> 0.25
    no_shadow
    hollow
    pigment { Clear }
    finish { ambient 0.0 }
   }
  }
 }

 sphere {
  <0, 1, 2> 2
  pigment {
   color White
   filter 0.85
  }
  no_shadow
  hollow
  interior {
   ior 1.001
   media {
    scattering {
     2,
     0.3
    }
   }
  }
  finish {
   ambient 0.0
  }
 }
 translate <0, 0, 2>
}
==============  Code ends  ==================================

Can anyone suggest how to get the cloud like effect?


Post a reply to this message


Attachments:
Download 'snapshot1.png' (41 KB)

Preview of image 'snapshot1.png'
snapshot1.png


 

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