POV/Vivid conversions
04-May-93 15:48:58
Sb: #21239-POV/Vivid conversions
Fm: Chris Young 76702,1655
To: Syndesis 76004,1763
The same issue might arrise in POV-Ray. If you do..
union {
object {… texture {…}}
object {… texture {…}}
object {… texture {…}}
object {… texture {…}}
}
it makes seperate copies of the texture for each object. If you do…
union {
object {…}
object {…}
object {…}
object {…}
texture {…}
}
it shares the texture among them all.
Read action !