Std PerspectiveCamera/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "==설명==")
(Updating to match new version of source page)
 
(13 intermediate revisions by one other user not shown)
Line 19: Line 19:
}}
}}


<span id="Description"></span>
==설명==
==설명==


'''표준 원근투영 카메라(Std PerspectiveCamera)''' 명령은 활성
The '''Std PerspectiveCamera''' command switches the camera in the active [[3D_view|3D view]] to perspective view mode. In this mode, objects that are further from the camera appear smaller than those that are closer.
[[3D_view/ko|3D 보기]]의 카메라를 원근투영 보기 모드로 전환합니다. 이 모드에서는 카메라에서 먼 개체가 가까운 개체보다 더 작게 보입니다.


[[Image:Std_PerspectiveCamera_example.svg]]
[[Image:Std_PerspectiveCamera_example.svg]]
{{Caption|Two cubes with the same dimensions in perspective view}}
{{Caption|원근 투영 보기에서 크기가 같은 육면체}}


==Usage==
<span id="Usage"></span>
==용법==


<div class="mw-translate-fuzzy">
# There are several ways to invoke the command:
# 이 명령을 실행하는 방법은 여러 가지입니다:
#* Select the {{MenuCommand|View → [[Image:Std_PerspectiveCamera.svg|16px]] Perspective view}} option from the menu.
#* 메뉴에서 {{MenuCommand|보기 → [[Image:Std_PerspectiveCamera.svg|16px]] 원근투영}} 옵션을 선택합니다.
#* Use the keyboard shortcut: {{KEY|V}} then {{KEY|P}}.
#* 단축키를 사용합니다: {{KEY|V}} 를 누른 다음 {{KEY|P}}.
</div>


<span id="Preferences"></span>
==Notes==
==환경 설정==


* 카메라 유형은 환경 설정에서 변경할 수 있습니다: {{MenuCommand|편집 → 환경설정... → Display → 3D 보기 → 카메라 유형}}. 선택한 유형은 모든 열린 문서 및 새로 열리는 문서의 3D 보기에 적용됩니다. [[Preferences_Editor/ko#3D_보기|환경 설정 편집기]]를 참조하십시오.
* It is also possible to switch to perspective view mode via the Mini-cube menu of the [[Navigation_Cube|Navigation Cube]].


<span id="Scripting"></span>
==Preferences==
==스크립트==


{{Emphasis|참조:}} [[FreeCAD_Scripting_Basics/ko|FreeCAD 스크립트 기초]].
* The camera type can be changed in the preferences: {{MenuCommand|Edit → Preferences... → Display → 3D View → Camera type}}. The selected type will be used for all 3D views of all opened documents and also for new documents. See [[Preferences_Editor#3D_View|Preferences Editor]].


3D 보기를 원근투영으로 변경하려면 ActiveView 객체의 {{incode|setCameraType}} 메소드를 사용하십시오. FreeCAD가 콘솔 모드인 경우 이 메소드는 사용할 수 없습니다.
==Scripting==

{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

To change the view to perspective use the {{incode|setCameraType}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.


{{Code|code=
{{Code|code=
Line 54: Line 57:


{{Docnav
{{Docnav
|[[Std_OrthographicCamera|OrthographicCamera]]
|[[Std_OrthographicCamera/ko|직교 투영 카메라]]
|[[Std_MainFullscreen|MainFullscreen]]
|[[Std_MainFullscreen/ko|메인 전체화면]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/ko|표준 보기 메뉴]]
|IconL=Std_OrthographicCamera.svg
|IconL=Std_OrthographicCamera.svg
|IconR=Std_MainFullscreen.svg
|IconR=Std_MainFullscreen.svg

Latest revision as of 09:58, 7 June 2023

표준 원근투영 카메라

메뉴 위치
보기 → 원근투영
작업대
모두
기본 단축키
V P
도입 버전
-
참조
표준 직교투영 카메라

설명

표준 원근투영 카메라(Std PerspectiveCamera) 명령은 활성 3D 보기의 카메라를 원근투영 보기 모드로 전환합니다. 이 모드에서는 카메라에서 먼 개체가 가까운 개체보다 더 작게 보입니다.

원근 투영 보기에서 크기가 같은 두 육면체

용법

  1. 이 명령을 실행하는 방법은 여러 가지입니다:
    • 메뉴에서 보기 → 원근투영 옵션을 선택합니다.
    • 단축키를 사용합니다: V 를 누른 다음 P.

환경 설정

  • 카메라 유형은 환경 설정에서 변경할 수 있습니다: 편집 → 환경설정... → Display → 3D 보기 → 카메라 유형. 선택한 유형은 모든 열린 문서 및 새로 열리는 문서의 3D 보기에 적용됩니다. 환경 설정 편집기를 참조하십시오.

스크립트

참조: FreeCAD 스크립트 기초.

3D 보기를 원근투영으로 변경하려면 ActiveView 객체의 setCameraType 메소드를 사용하십시오. FreeCAD가 콘솔 모드인 경우 이 메소드는 사용할 수 없습니다.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.setCameraType('Perspective')
FreeCADGui.ActiveDocument.ActiveView.getCameraType()