본문 바로가기
Python Library/VPython

[VPython] Miscellaneous (2)

by goatlab 2022. 1. 18.
728x90
반응형
SMALL

Camera

 

카메라의 위치와 축은 scene.camera를 사용하여 제어할 수 있다.

 

 

Camera Follow

 

카메라는 움직이는 물체를 따라가도록 만들 수 있습니다.

scene.camera.follow(obj)를 생성한 직후에 수행한다.

 

ball = sphere()
scene.camera.follow(ball)

 

 

Camera Control

 

scene.camera.pos를 사용하여 카메라 위치를 가져오고 카메라 위치를 제어한다.

 

scene.camera.pos = vector(#,#,#)

 

scene.camera.axis을 사용하여 카메라 방향을 가져오고 방향을 제어한다.

 

scene.camera.axis = vector(#,#,#)

 

scene.range = #를 사용하여 축소하고 더 넓은 범위를 설정한다.

 

 

728x90
반응형
LIST

'Python Library > VPython' 카테고리의 다른 글

[VPython] Sharing / Backup  (0) 2022.01.18
[VPython] Miscellaneous (3)  (0) 2022.01.18
[VPython] Miscellaneous (1)  (0) 2022.01.18
[VPython] Mouse and Keyboard Events  (0) 2022.01.18
[VPython] Math Functions  (0) 2022.01.18