Std ViewFitSelection/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "==설명==")
(Created page with "'''표준 선택 보기(Std ViewFitSelection)''' 명령은 선택한 개체가 모두 활성 3D 보기에 보이도록 카메라를 확대·축소 하거나 이...")
Line 21: Line 21:
==설명==
==설명==


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


==Usage==
==Usage==

Revision as of 00:30, 5 January 2021

표준 선택 보기

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

설명

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

Usage

  1. Select one or more objects.
  2. There are several ways to invoke the command:
    • Press the Std ViewFitSelection button.
    • Select the View → Standard views → Fit selection option from the menu.
    • Select the Fit selection option from the 3D view context menu.
    • Use the keyboard shortcut: V then 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')