POV-Ray : Newsgroups : povray.binaries.images : Wash out problem? : Re: Wash out problem? Server Time
4 Oct 2024 09:16:23 EDT (-0400)
  Re: Wash out problem?  
From: Charles Krause
Date: 8 Apr 1999 19:03:57
Message: <370d27cd.0@news.povray.org>
Josh English wrote in message <370D0BD7.AD319F32@spiritone.com>...
>HMMM... the focal blur really works well here, but I wonder if you can
>compensate for the wash out by lowering the assumed gamma of global diffuse
and
>brilliances of all the textures... just a thought tho I'm not sure if
they'll
>work
>


A good suggestion :) It works too - I put in...

#declare pov = <-6,6,0>;
#declare pof = <2.5,0.5,0>;
#declare arp = 0.2;

global_settings
{
  #if (arp)
        assumed_gamma 1.5
  #else
        assumed_gamma 1.0
  #end
}


camera
{
  location  pov
  focal_point pof
  #if (arp)
        aperture  arp
        blur_samples 20
  #end
  direction 1.5*z
  right     4/3*x
  look_at   pof

}


Post a reply to this message

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