|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hi,
I try to make a checker pattern with two pre-defined textures , but
I get a syntax error.
texture {
checker texture { T_Stone1 } , texture { T_Stone2 }
finish { diffuse .9 }
}
If I remove the "finish" parameter, it works.
Can anyone tell me why I cannot add the "finish" line in to the texture
?
Thanks
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I don't think you can assign a finish to a predefined texture. You might try
re-defining the textures with the finish you want (and assigning them your
own unique name).
--
Paul Hinds
gri### [at] swbellnet
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
GrimDude (grimdude&nos### [at] swbellnet) wrote:
> I don't think you can assign a finish to a predefined texture. You might try
> re-defining the textures with the finish you want (and assigning them your
> own unique name).
That is exactly what is done by texture { T_Stone1 finish { diffuse 0.9 } }:
the finish of T_Stone1 is overriden (replaced) by finish { diffuse 0.9 }.
B-o-b, also known as Roland.
--
bob### [at] casimirrezelenstfr -- Linux, POV-Ray, LaTeX
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Yeah, I'm tasting shoe leather again. :)
--
Paul Hinds
gri### [at] swbellnet
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
vhdldbx (vhd### [at] hotmailcom) wrote:
> texture {
> checker texture { T_Stone1 } , texture { T_Stone2 }
> finish { diffuse .9 }
> }
Try this:
texture {
checker
texture { T_Stone1 finish { diffuse 0.9 } }
texture { T_Stone2 finish { diffuse 0.9 } }
}
B-o-b.
--
bob### [at] casimirrezelenstfr -- Linux, POV-Ray, LaTeX
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |