|
|
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
area_light
<8,0,0> <0,0,8>
4, 4
adaptive 0
jitter
translate <40,80,40>
}
camera {
location <0, 0, 11>
look_at 0
angle 40
}
// Right Wall
box{
<1,1,1>,<-1,-1,-1>
texture{
pigment{
color Khaki
}
normal{
wrinkles 0.25
scale 0.005
}
finish{
ambient 0.266167
diffuse 0.884867
}
}
scale <0.1, 1.5, 3.5>
translate <-2.938508, 0, .140896>
}
// Left Wall
box{
<1,1,1>,<-1,-1,-1>
texture{
pigment{
color Khaki
}
normal{
wrinkles 0.25
scale 0.005
}
finish{
ambient 0.266167
diffuse 0.884867
}
}
scale <0.1, 1.5, 3.5>
translate <2.938508, 0, .140896>
}
Post a reply to this message
|
|