In article <38A47BC8.D62A79B3@global2000.net>, Andrea Ryan
<ary### [at] global2000net> wrote:
> Is there a quick way of using a image in isosurfaces?
The usual ways are to use a pigment function with either image_map or
image_pattern.
#declare Image_Function =
function {
pigment {
image_map {IMAGE_MAP_STUFF}
}
or
pigment {image_pattern {tga "image.tga"}
color_map {[0 color Black] [1 color White]}
}
}
isosurface {
function {y - Image_Function(x,y,z)}
...
}
--
Chris Huff
e-mail: chr### [at] yahoocom
Web page: http://chrishuff.dhs.org/
Post a reply to this message
|