Std ViewFitSelection/ko: Difference between revisions

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




==Scripting==
==스크립트==


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

Revision as of 00:36, 5 January 2021

표준 선택 보기

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

설명

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

용법

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


스크립트

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')