Std ViewFitSelection/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav |전체 보기 |등각 투영 |표준 보기 메뉴 |IconL=Std_ViewFitAll.svg |IconR=Std_ViewIsome...")
(Updating to match new version of source page)
 
(10 intermediate revisions by 2 users not shown)
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/ko
|Name=Std ViewFitSelection
|Name=Std ViewFitSelection
|Name/ko=표준 선택 보기
|MenuLocation=ViewStandard viewsFit selection
|MenuLocation=보기표준 보기선택 보기
|Workbenches=All
|Workbenches=모두
|Shortcut={{KEY|V}} {{KEY|S}}
|Shortcut={{KEY|V}} {{KEY|S}}
|SeeAlso=[[Std_ViewFitAll|Std ViewFitAll]]
|SeeAlso=[[Std_ViewFitAll/ko|표준 전체 보기]]
}}
}}


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


<div class="mw-translate-fuzzy">
The '''Std ViewFitSelection''' command zooms and pans the camera so that all selected objects fit inside the active [[3D_view|3D view]].
'''표준 선택 보기(Std ViewFitSelection)''' 명령은 선택한 개체가 모두 활성 [[3D_view/ko|3D 보기]]에 보이도록 카메라를 확대·축소 하거나 이동합니다.
</div>


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


# 하나 이상의 개체를 선택합니다.
# Select one or more objects.
# 이 명령을 실행하는 방법은 여러 가지 입니다:
# There are several ways to invoke the command:
#* Press the {{Button|[[Image:Std_ViewFitSelection.svg|16px]] [[Std_ViewFitSelection|Std ViewFitSelection]]}} button.
#* {{Button|[[Image:Std_ViewFitSelection.svg|16px]] [[Std_ViewFitSelection/ko|표준 선택 보기]]}} 버튼을 누릅니다.
#* Select the {{MenuCommand|ViewStandard views → [[Image:Std_ViewFitSelection.svg|16px]]Fit selection}} option from the menu.
#* 메뉴에서 {{MenuCommand|보기표준 보기 → [[Image:Std_ViewFitSelection.svg|16px]]선택 보기}} 옵션을 선택합니다.
#* Select the {{MenuCommand|[[Image:Std_ViewFitSelection.svg|16px]] Fit selection}} option from the [[3D_view|3D view]] context menu.
#* [[3D_view/ko|3D 보기]]의 상황에 맞는 메뉴에서 {{MenuCommand|[[Image:Std_ViewFitSelection.svg|16px]] 선택 보기}} 옵션을 선택합니다.
#* Use the keyboard shortcut: {{KEY|V}} then {{KEY|S}}.
#* 단축키를 사용합니다: {{KEY|V}} 다음 {{KEY|S}}.


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


{{Emphasis|참조:}} [[FreeCAD_Scripting_Basics/ko|FreeCAD 스크립트 기초]].
==Scripting==


3D 보기를 '선택 보기'로 변경하려면 FreeCADGui 객체의 {{incode|SendMsgToActiveView}} 메소드를 사용할 수 있습니다. 이 메소드는 FreeCAD 콘솔 모드에서는 사용할 수 없습니다.
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

To change the view to 'fit selection' the {{incode|SendMsgToActiveView}} method of the FreeCADGui object can be used. This method is not available if FreeCAD is in console mode.


{{Code|code=
{{Code|code=
Line 43: Line 48:
FreeCADGui.SendMsgToActiveView('ViewSelection')
FreeCADGui.SendMsgToActiveView('ViewSelection')
}}
}}



{{Docnav
{{Docnav
|[[Std_ViewFitAll|ViewFitAll]]
|[[Std_ViewFitAll/ko|전체 보기]]
|[[Std_ViewIsometric|ViewIsometric]]
|[[Std_ViewIsometric/ko|등각 투영]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/ko|표준 보기 메뉴]]
|IconL=Std_ViewFitAll.svg
|IconL=Std_ViewFitAll.svg
|IconR=Std_ViewIsometric.svg
|IconR=Std_ViewIsometric.svg
Line 55: Line 61:
{{Std Base navi{{#translation:}}}}
{{Std Base navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Latest revision as of 10:35, 19 March 2023

표준 선택 보기

메뉴 위치
보기 → 표준 보기 → 선택 보기
작업대
모두
기본 단축키
V S
도입 버전
-
참조
표준 전체 보기

설명

표준 선택 보기(Std ViewFitSelection) 명령은 선택한 개체가 모두 활성 3D 보기에 보이도록 카메라를 확대·축소 하거나 이동합니다.

용법

  1. 하나 이상의 개체를 선택합니다.
  2. 이 명령을 실행하는 방법은 여러 가지 입니다:
    • 표준 선택 보기 버튼을 누릅니다.
    • 메뉴에서 보기 → 표준 보기 → 선택 보기 옵션을 선택합니다.
    • 3D 보기의 상황에 맞는 메뉴에서 선택 보기 옵션을 선택합니다.
    • 단축키를 사용합니다: V 다음 S.

스크립트

참조: FreeCAD 스크립트 기초.

3D 보기를 '선택 보기'로 변경하려면 FreeCADGui 객체의 SendMsgToActiveView 메소드를 사용할 수 있습니다. 이 메소드는 FreeCAD 콘솔 모드에서는 사용할 수 없습니다.

import FreeCADGui

FreeCADGui.SendMsgToActiveView('ViewSelection')