POV-Ray : Newsgroups : povray.binaries.images : Fun stuff heading your way FAST : Re: Fun stuff heading your way FAST Server Time
30 Jul 2024 02:26:12 EDT (-0400)
  Re: Fun stuff heading your way FAST  
From: Thomas de Groot
Date: 30 Nov 2013 10:25:27
Message: <529a0367$1@news.povray.org>
On 29-11-2013 16:10, clipka wrote:
> To use it for motion blur, you would use it as in the following example:
>
>      #local DeltaT = 0.1;
>      #for( T, 0.0, 1.0, DeltaT )
>        sphere {
>          <T,0,0>, 1
>          blink T, T+DeltaT
>        }
>      #end
>

To be correct, this should be this:

     #local DeltaT = 0.1;
     #for( T, 0.0, 0.9, DeltaT )
       sphere {
         <T,0.5,-1>, 0.5
         blink 0, T+DeltaT
       }
     #end

Thomas


Post a reply to this message

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