|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Just to make sure I've got this right, I'm currently attempting to
render an image_map on a box in my scene. It's imperitave that the
resulting image is traced so each pixel of the image_map fills exactly
one pixel of my new picture. Would this be the proper settings?
camera {
orthographic
location <0,0,-1>
look_at <0,0,0>
right 1*x
up 1*y
}
box {
<-0.5, -0.5, 0.001>, <0.5, 0.5, 0.001>
...
}
My image_map will of course need to be translated -0.5 to get it
centered in my box properly, but am I right in assuming this will
reproduce my image exactly?
- How
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> Just to make sure I've got this right, I'm currently attempting to
> render an image_map on a box in my scene. It's imperitave that the
> resulting image is traced so each pixel of the image_map fills exactly
> one pixel of my new picture. Would this be the proper settings?
As far as I can tell, your approach will work fine, as long as you just want
to layer images on top of each other for some effect.
<shameless plug>
If you want to layer other real objects in front of the camera, you might
want to have a look at my Glare-Macros. They provide an easy setup for the
"standard" camera (only look_at, location, optional sky and aspect_ratio)
and will position an image in front of the camera, filling the entire
viewing frustrum. The Glare-Macros are meant to layer a specular-layer on
top of the original image in order to get the glaring effect, but there's
also a macro which will just take a pigment and place it in front of the
camera.
The link is here:
http://www.nolights.de/download.html#Glare Macros
</shameless plug>
Regards,
Tim
--
"Tim Nikias v2.0"
Homepage: <http://www.nolights.de>
Email: tim.nikias (@) nolights.de
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Sun, 21 Mar 2004 00:58:44 +0100, "Tim Nikias v2.0" <tim.nikias (@)
nolights.de> wrote:
>> Just to make sure I've got this right, I'm currently attempting to
>> render an image_map on a box in my scene. It's imperitave that the
>> resulting image is traced so each pixel of the image_map fills exactly
>> one pixel of my new picture. Would this be the proper settings?
>
>As far as I can tell, your approach will work fine, as long as you just want
>to layer images on top of each other for some effect.
Yep, that's exactly what I'm doing.
>The link is here:
>http://www.nolights.de/download.html#Glare Macros
Hey, thanks - this could come in very handy!
- How
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
|
|