POV-Ray : Newsgroups : povray.newusers : transparent backlit colored gels : Re: transparent backlit colored gels Server Time
30 Jun 2024 15:08:27 EDT (-0400)
  Re: transparent backlit colored gels  
From: Thomas de Groot
Date: 21 Nov 2011 03:40:02
Message: <4eca0e62$1@news.povray.org>
...But this does what you want:

#declare Blue_gel =
box {<0, 0,0 >  <1, 1, -.01 > hollow
   texture {pigment {rgbt 1}}
   interior {
     media {
       scattering {1, <1,0,0>*1000}
     }
   }
}

#declare Yellow_gel =
box {<0, 0,0 >  <1, 1,-.01 > hollow
   texture {pigment{rgbt 1}}
   interior {
     media {
       scattering {1, <0,0,1>*1000}
     }
   }
   translate <.5,.5, -.5>
}

Blue_gel
Yellow_gel


Post a reply to this message

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