POV-Ray : Newsgroups : povray.unofficial.patches : No more motion blur on MegaPov 1.0 ? Server Time
28 Jun 2024 23:44:11 EDT (-0400)
  No more motion blur on MegaPov 1.0 ? (Message 1 to 1 of 1)  
From: Benoit SERRA
Subject: No more motion blur on MegaPov 1.0 ?
Date: 4 Feb 2003 03:42:42
Message: <3E3F7D0D.70801@nospam.free.fr>
Well, here is a piece of my scene :

#version unofficial MegaPov 1.0;

#declare rad=off;
#declare radquality=0;
#declare r1 = seed(33);
#declare testcamera=on;
#declare odavid=off;
#declare dotrees=off;
#declare ocoureur=on;
#declare ovicki=off;


global_settings {

         motion_blur 10,10

         #if (rad)
                 #switch (radquality)
                 #case (1)
                     radiosity{
                       pretrace_start 0.08
                       pretrace_end   0.01
                       count 130
                       nearest_count 5
                       error_bound 0.3

                       recursion_limit 1
                       low_error_factor 0.5
                       gray_threshold 0.0
                       minimum_reuse 0.015
                       brightness 1.0
                       adc_bailout 0.01/2
                       normal on
                     }
                #break
                #case(0)
                 #warning "rad quality 0"
                     radiosity{
                       pretrace_start 0.08
                       pretrace_end   0.01
                       /*count 50
                       error_bound 0.5
                       recursion_limit 1*/
                    }
                #break
                #end
         #end



}

MegaPov give me a error message on "motion_blur 10,10" saying that 
motion_blur is an undeclared identifier. And I didn't found any 
motion_blur section in megapov's documentation.

So ?


Post a reply to this message

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