POV-Ray : Newsgroups : povray.unofficial.patches : Post processing in MegaPOV1.1 ? : Post processing in MegaPOV1.1 ? Server Time
8 Jun 2024 22:01:58 EDT (-0400)
  Post processing in MegaPOV1.1 ?  
From: Hugo Asm
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

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