POV-Ray : Newsgroups : povray.unofficial.patches : Post processing in MegaPOV1.1 ? Server Time
14 May 2024 09:27:54 EDT (-0400)
  Post processing in MegaPOV1.1 ? (Message 1 to 2 of 2)  
From: Hugo Asm
Subject: Post processing in MegaPOV1.1 ?
Date: 19 Feb 2005 14:35:00
Message: <web.421793d08243a97999fca7c0@news.povray.org>
Hey guys,

Maybe I am at fault. But shouldn't this compute? The second post_process
step gives a function evaluation underflow.

Regards,
Hugo


#version unofficial MegaPov 1.1;
#include "pprocess.inc"

global_settings {
  post_process{
    PP_Init_Colors_Outputs()
    function { ( f_output_red(x-.05,y)+f_output_red(x+.05,y) )*.5 }
    function { f_output_green(x,y) }
    function { f_output_blue(x,y) }
    function { 0 }
    save_file output_filename(0)
  }
  post_process{
    PP_Init_PP_Colors_Outputs()
    function { f_pp_red(x,y,1) }
    function { f_pp_green(x,y,1) }
    function { f_pp_blue(x,y,1) }
    function { 0 }
    save_file output_filename(0)
  }
}

camera { location -3*z look_at 0 }
sphere { 0,1 pigment { rgb 1 } finish { ambient 1 } }


Post a reply to this message

From: ABX
Subject: Re: Post processing in MegaPOV1.1 ?
Date: 21 Feb 2005 07:35:06
Message: <17lj119ovadohtfq6dgkbvltmhq40rqhl5@4ax.com>
On Sat, 19 Feb 2005 14:31:31 EST, "Hugo Asm" <nomail@nomail> wrote:
> Maybe I am at fault. But shouldn't this compute? The second post_process
> step gives a function evaluation underflow.

Yes, this is supposed to work. I'm digging now where the problem is, thanks!

ABX


Post a reply to this message

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