POV-Ray : Newsgroups : povray.advanced-users : Spatial resolution of transparency calculation? : Here comes the scene... Server Time
4 Oct 2024 16:56:21 EDT (-0400)
  Here comes the scene...  
From: tcrass
Date: 29 Mar 2007 02:22:50
Message: <460b694a$1@news.povray.org>
Oops -- forgot something...

--------<8--------

#declare d1 = 0.001;
#declare d2 = 0.0001;

camera {
   location -10*z
}

disc {0 z 5
   texture {
     pigment {
       color rgb <1, 0, 0>
     }
     finish {
       ambient 1
       diffuse 0
     }
   }
}

disc {0 z 3
   texture {
     pigment {
       color rgbt <1, 1, 1, 0.9>
     }
     finish {
       ambient 1
       diffuse 0
     }
   }
   translate <-3, 0, -d1>
}

disc {0 z 3
   texture {
     pigment {
       color rgbt <1, 1, 1, 0.9>
     }
     finish {
       ambient 1
       diffuse 0
     }
   }
   translate <3, 0, -d2>
}


Post a reply to this message

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