jong wrote:
> Hi,
>
> I try to use two image_map on the heigh_field.>
Do not worry, Shiann-Jong. There is a way to average two images together
for use in a height_field. Unfortunately each image must be in 24-bit
color or 8-bit grayscale. 16-bit grayscale images will *not* work with
this method.
Here's some code which I just tested:
height_field{
function 200,200{
pigment{
average
pigment_map{
[1
image_map{tga"image_1.tga"
interpolate 2}
]
[1
image_map{
jpeg"image_2.jpg" interpolate 2
}
]
}
}
}
}
Look for 'average' in the POV-Ray documentation to learn how to control
the average pattern and its pigment_map.
-Samuel Benge
Post a reply to this message
|