POV-Ray : Newsgroups : povray.newusers : Adding more lights and lightening up the pigment : Re: Adding more lights and lightening up the pigment Server Time
5 Sep 2024 06:18:26 EDT (-0400)
  Re: Adding more lights and lightening up the pigment  
From: Trevor Quayle
Date: 5 Sep 2001 12:29:46
Message: <3b9652fa$1@news.povray.org>
> How do I add more lights to brighten up the left wall?  And how do I get a
> lighter shade of the khaki that I'm using.  Here's my code:
>
> #include "colors.inc"
>
> background {color White}
>
> light_source{
>  0*x
>  color White

to brighten this light you can multiply the color by a number
i.e., White*1.5, White*5, etc...
-snip-

> // Right Wall
>
> box{
>  <1,1,1>,<-1,-1,-1>
>  texture{
>   pigment{
>    color Khaki

Again, use multiplier to change the intensity of the color ( <1=darker,
>1=lighter, i.e. try Khaki*1.1)  this is a quick change for opaque colors,
remember that the multiplier will affect the transmit and filter values as
well if they are greater than 0


Post a reply to this message

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