I'm trying to put an image map on top of a closed cylinder. Except
the cylinder dissappears where the image ends. How do I just get my
image on the clyinder with color behind it?
Mark Radosevich wrote:
> > The simplest method is probably to just put the image on a disc (or another> cylinder), being careful to keep the surfaces apart slightly.> > -Mark R.
Or use a thin cylinder with the same diameter as the original
in an intersection. The pigment on the intersecting cylinder will
append itself to the end of the original.
--
Ken Tyler
tyl### [at] pacbellnet
From: Darius Davis
Subject: Re: Genral Question
Date: 30 Dec 1998 20:03:36
Message: <368BC864.7C49@acm.org>
portelli wrote:
> I'm trying to put an image map on top of a closed cylinder. Except> the cylinder dissappears where the image ends. How do I just get my> image on the clyinder with color behind it?
If I'm understanding this correctly, all you need to do is layer another
texture under the image_map, something like this:
cylinder {
POINT1, POINT2, RADIUS
texture {pigment {color Red}} // this shows around the outside of the
image
texture {
pigment {
image_map ...
}
}
}
Hope this helps,
Darius