Std ViewFitSelection/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "==용법==")
(Created page with "# 하나 이상의 개체를 선택합니다. # 이 명령을 실행하는 방법은 여러 가지 입니다: #* {{Button|16px Std_ViewFit...")
Line 25: Line 25:
==용법==
==용법==


# 하나 이상의 개체를 선택합니다.
# 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}}.





Revision as of 00:36, 5 January 2021

표준 선택 보기

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

설명

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

용법

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


Scripting

See also: FreeCAD Scripting Basics.

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

import FreeCADGui

FreeCADGui.SendMsgToActiveView('ViewSelection')