|
|
say I have a camera
#declare Camera_Location = <3.9284, 1.492, -15.5296>;
#declare Camera_Look_At = <-1.0912, 1.5887, 2.4086>;
camera {
location Camera_Location
look_at 0*y
translate Camera_Look_At
right Camera_Aspect_Ratio * x
blur_samples 20
aperture .2
focal_point Camera_Look_At
}
when I translate the camera on line 3 of the camera statement will it also
move the focal point? I found no mention of this in the docs, my pov-sense
is telling me this is the case however I thought I would just check to make
sure.
--
Kevin
http://www.geocities.com/qsquared_1999/
#macro _(r)#if(r<12)#local i=asc(substr(
"oqshilacefg",r,1))-97;disc{<mod(i,7)-3,
div(i,7)-1,6>,z,.4pigment{rgb 10}}_(r+1)
#end#end _(1)//KL
Post a reply to this message
|
|
|
|
Kevin Loney <kev### [at] ekoikcom> wrote:
> when I translate the camera on line 3 of the camera statement will it also
> move the focal point?
Camera transformations are always performed after the camera parameters
have been parsed regardless of where you write the transformation.
There was a reason for this, but I don't remember now what was it.
--
#macro M(A,N,D,L)plane{-z,-9pigment{mandel L*9translate N color_map{[0rgb x]
[1rgb 9]}scale<D,D*3D>*1e3}rotate y*A*8}#end M(-3<1.206434.28623>70,7)M(
-1<.7438.1795>1,20)M(1<.77595.13699>30,20)M(3<.75923.07145>80,99)// - Warp -
Post a reply to this message
|
|