MATLAB Function Reference |
Syntax
camlookat(object_handles) camlookat(axes_handle) camlookat
Description
camlookat(object_handles)
觀察向量 object_handles
所定義的物件。此向量含有軸的 children
其握把。
camlookat(axes_handle)
觀察 axes_handle
所定義軸產物的物件。
Remarks
camlookat
移動攝影機的位置及目標並保留相關視覺方向和攝影機的視覺角度。物件將會以完全填滿軸位置矩形的形式被查看。
camlookat
設定軸的 CameraPosition 和 CameraTarget
屬性。
Examples
此範例在不同的位置建立三個球體並逐漸增加攝影機的位置以致於每個球體都成為鏡頭前組成的物件:
[x y z] =sphere
; s1 = surf(x,y,z); hold on s2 = surf(x+3,y,z+3); s3 = surf(x,y,z+6);daspect
([1 1 1])view
(30,10)camproj
perspective camlookat(gca) % Compose the scene around the current axes pause(2) camlookat(s1) % Compose the scene around spheres1
pause(2) camlookat(s2) % Compose the scene around spheres2
pause(2) camlookat(s3) % Compose the scene around spheres3
pause(2) camlookat(gca)
See Also
camlight | camorbit |