Std ViewZoomOut/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "==Opis==")
(Created page with "Polecenie '''Oddal''' powoduje powiększenie aktywnego widoku w oknie widoku 3D.")
Line 21: Line 21:
==Opis==
==Opis==


The '''Std ViewZoomOut''' command zooms out in the active [[3D_view|3D view]].
Polecenie '''Oddal''' powoduje powiększenie aktywnego widoku w oknie [[3D_view/pl|widoku 3D]].


==Usage==
==Usage==

Revision as of 08:22, 28 June 2022

Std: Oddal widok

Lokalizacja w menu
Widok → Powiększenie → Oddal
Środowisko pracy
wszystkie
Domyślny skrót
Ctrl + -
Wprowadzono w wersji
-
Zobacz także
Przybliż, Powiększ obszar

Opis

Polecenie Oddal powoduje powiększenie aktywnego widoku w oknie widoku 3D.

Usage

  1. There are several ways to invoke the command:
    • Select the View → Zoom → Zoom Out option from the menu.
    • Use the keyboard shortcut: Ctrl+-.

Notes

  • It is also possible to zoom with the mouse scroll wheel.

Preferences

  • The zoom factor can be changed in the preferences: Edit → Preferences... → Display → Navigation → Zoom step. This setting also affects scroll wheel zoom. See Preferences Editor.

Scripting

See also: FreeCAD Scripting Basics.

To zoom out use the zoomOut method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.zoomOut()