|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
hey,
i've got this code
box{<-9.7,0.15,7.2>,<-5,4,9.5>
pigment { rgbt 1 }
interior {
media {
emission rgbt <1, 1, 1>
scattering{1,<1,1,1>}
}
}
hollow
}
however i want the light to be semi transparent! so it doesnt look like so
bright! is there anyway to do this??
cheers
Damien
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Damien" <rev### [at] iinetnetau> wrote in message
news:3f50c7f2$1@news.povray.org...
>
> box{<-9.7,0.15,7.2>,<-5,4,9.5>
> pigment { rgbt 1 }
> interior {
> media {
> emission rgbt <1, 1, 1>
> scattering{1,<1,1,1>}
> }
> }
> hollow
> }
>
> however i want the light to be semi transparent! so it doesnt look like so
> bright! is there anyway to do this??
The either the emission or scattering (or both) color vector needs to be
lowered to smaller values. You can also add a density statement having a rgb
value lower than the default of 1, as well.
I'm not sure if you have a typo, or not, but transmit is of no use for the
emission, 'rgb' is all you need there.
Bob H.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
|
|