POV-Ray : Newsgroups : povray.unofficial.patches : Odd parsing quirk with motion_blur Server Time
28 Mar 2024 20:03:37 EDT (-0400)
  Odd parsing quirk with motion_blur (Message 1 to 1 of 1)  
From: Christian Froeschlin
Subject: Odd parsing quirk with motion_blur
Date: 7 Feb 2007 15:01:13
Message: <45ca3009$1@news.povray.org>
The following snippet raises Parse Error: No object inside motion_blur
when I try to parse it using MegaPOV 1.2. Not a very critical problem,
of course, just to let you know.

#version unofficial megapov 1.2

#declare USE_MOTION_BLUR = on;

global_settings
{
#if (USE_MOTION_BLUR)
   motion_blur 5,1
#end
}


#if (USE_MOTION_BLUR)
motion_blur
{
#end

   sphere {clock*x,1 pigment {color rgb 1}}

#if (USE_MOTION_BLUR)
}
#end


Post a reply to this message

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