POV-Ray : Newsgroups : povray.general : motion blur by media : Re: motion blur by media Server Time
18 Apr 2024 01:02:25 EDT (-0400)
  Re: motion blur by media  
From: Bald Eagle
Date: 28 May 2018 12:40:01
Message: <web.5b0c2ff0d6fa6c8c10874a080@news.povray.org>
What you're doing is mixing a filter pigment with your media.

Make the spheres of the tail (the container for the media fully transparent.

Then to avoid the coincident surface problem, scale the spheres a little smaller
then the comet sphere.

sphere{ <0,0,0>,0.27 pigment{rgb <1,0,0>}}
 #declare Nr = 1;
 #while (Nr>0)

 sphere{ <0,0,0>,0.26 pigment{rgbt <1,1,1,1>}

        hollow
 interior{
  media{
   scattering{Nr,<1,1,1>}
   intervals 3
   samples 1,1
   }
 }
         translate <Nr,0,0>
       }

 #declare Nr = Nr - 0.1;
 #end


Post a reply to this message

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