POV-Ray : Newsgroups : povray.general : visible flourescent/neon tube light : Re: Improved version of neon light Server Time
13 Aug 2024 21:22:33 EDT (-0400)
  Re: Improved version of neon light  
From: mick
Date: 9 Sep 1998 14:16:12
Message: <01bddc15$8199b4c0$bdeba8c2@wphnvffu>
> Tried to put everyones ideas together - what do you reckon.
> 
> Mick
>  
>
camera
{
  location  <0.0, 0.0, -15.0>
  look_at   <0.0, 0.0,  0.0>
}

background{color rgb<0,0,0>}
light_source {<0,5,-20> color rgb 0.25 }
// ----------------------------------------

#declare nmb=-15;
#while (nmb<=15)
   light_source { nmb*x color rgb <0.2,0,0.1> }
   #declare nmb=nmb+0.33;
#end
cylinder { <-5,0,0>, <5,0,0>, 0.2 pigment { color rgbf <20,2,5,0.5> }
finish{specular 0.5}
 }


Post a reply to this message

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