POV-Ray : Newsgroups : povray.unofficial.patches : Problems with motion blur... : Re: Problems with motion blur... Server Time
1 Sep 2024 20:17:40 EDT (-0400)
  Re: Problems with motion blur...  
From: Chris Huff
Date: 22 Oct 2000 08:06:08
Message: <chrishuff-80D881.07085822102000@news.povray.org>
In article <39f27d6f@news.povray.org>, "Tony[B]" 
<ben### [at] panamac-comnet> wrote:

> I have a spline. I want to move an object along that spline, and have it
> motion-blur as it moves. It seems that I can only feed the spline "clock",
> or else the blur doesn't show up. I want to control it with another value,
> that doesn't increase constantly like clock, say with autoclck.mcr, but it
> doesn't blur! What can I do?

As long as the value you give to the spline is calculated using the 
"clock" value within the motion_blur block, it should work. I don't know 
how the AutoClock macros are doing things, but I don't see how they 
wouldn't work.
For example: this will work:
motion_blur {
    #declare Val = sqr(sin(clock));
    object {MyObject translate MySpline(Val)}
}

But this will not blur with movement along the spline:
#declare Val = sqr(sin(clock));
motion_blur {
    object {MyObject translate MySpline(Val)}
}

-- 
Christopher James Huff
Personal: chr### [at] maccom, http://homepage.mac.com/chrishuff/
TAG: chr### [at] tagpovrayorg, http://tag.povray.org/

<><


Post a reply to this message

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