POV-Ray : Newsgroups : povray.newusers : How to make White on White : Re: How to make White on White Server Time
5 Sep 2024 06:18:07 EDT (-0400)
  Re: How to make White on White  
From: Kari Kivisalo
Date: 12 Aug 2001 16:52:40
Message: <3B76ED3E.1DC249E6@pp.htv.fi>
First put light source 10 times further to get even lighting on the
bg plane. Look up what's the bg color in the image (134,134,134), multiply
plane color by 255/134 to get white bg. This way shadows will work also.



#include "colors.inc"

#declare Cam1 = camera { location<-2,0,0>
                         look_at <0,0,0>}
#declare Cam3 = camera { location<0,2,-8>
                         look_at <0,1,0>}
camera{Cam3}

light_source{<-2,15,-15>*10 color White
 area_light 50*x,50*z,6,6  adaptive 1 jitter
 }

blob {
    threshold .65
    cylinder { <0,0,0>, <4,0,0>, 1, 1 }
    cylinder { <0,1,0>, <4,1,0>, 1, 1 }
    cylinder { <0,.5,0>, <4,.5,0>, 1, 1 }
    pigment { Blue }
    finish { phong 1 }
  }
plane {-z, -0.5
       pigment {color White*255/134}
      }

_____________
Kari Kivisalo


Post a reply to this message

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