|
|
Jos Tellings <jte### [at] chellonl> wrote in message
news:oprqvdz9kopkmer3@localhost...
> Hi,
>
> I want to use the cells-pattern. If i do simply :
>
> pigment { cells }
>
> i get different colors gray, but i want different colors red for example
>
> how can i do that?
>
> thank you Very Much!
what you are interested in using is color_map. something like this should
get you started.
plane {
<0, 1, 0>, 0
pigment {
cells
color_map {
[0.0 rgb <1, 0, 0> ]
[1.0 rgb <0, 0 ,0> ]
}
}
}
good luck!
ross
Post a reply to this message
|
|