|
|
I started messing with the object pattern, and got it to work in a pigment
(great work, guys!). However, I have not been able to make it work with
densities (the parser gives me an error for the color values after the
nested object{}). Would this be possible, or will we have to use
workarounds? (A workaround for this situation is, in fact, quite easy, but
that's not the point - I want to know if what I am trying to do is, in
general, possible).
Here's my scene:
camera {
location <-5,0,0>
look_at 0
}
box {
<-5,-5,-1>,<5,5,1>
pigment {color transmit 1}
interior {
media {
emission red 1
density {
object {
sphere {0,1.25}
color red 1
color blue 1
}
}
}
}
}
...Chambers
Post a reply to this message
|
|