|
|
whenever i use image_map to map a texture onto a box of any size, only the
front and back is textured leaving the top and sides all wierd and stretched
looking ... (the texture bricks is just declared becasue i use it often in
my scene)
#declare bricks = texture {
pigment {
image_map {
"stone.bmp"
map_type 0
interpolate 2
}
scale 10
}
}
box {
<-20, -10, 5>, <20, 2.7, 10>
texture { bricks }
}
.. i just want the brick texture to show up everywhere on the box.
help appreciated
Post a reply to this message
|
|