POV-Ray : Newsgroups : povray.general : Shadow disity : Re: Shadow disity Server Time
30 Jul 2024 16:27:48 EDT (-0400)
  Re: Shadow disity  
From: Mike Williams
Date: 24 Oct 2008 13:06:13
Message: <2XRiS9BT2fAJFwpp@econym.demon.co.uk>
Wasn't it user who wrote:
>Hi all.
>
>Could enybody give me answer on my question?
>
>How I do in POV-Ray hightlight the shadows without increasing the 
>ambient_light?

You could reduce the contrast. One way to do that is to place a contrast 
reducing filter around the camera

#declare Camera_location = < whatever >;
#declare Contrast = 0.75;  // 1.0 = normal
#declare Brightness = 0.5; // 0.5 = normal

sphere {
    Camera_location, 0.01 hollow
    pigment {color rgb Brightness transmit Contrast}
    finish {ambient 0 diffuse 1}
}

// Basic idea swiped from Rune S. Johansen

-- 
Mike Williams
Gentleman of Leisure


Post a reply to this message

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