Std ViewZoomOut/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/ru |Std ViewZoomIn |Std ViewBoxZoom |Std View Menu |IconL=Std_ViewZoomIn.svg |IconR=Std_ViewBoxZoom....")
No edit summary
 
(13 intermediate revisions by 3 users not shown)
Line 2: Line 2:


{{Docnav/ru
{{Docnav/ru
|[[Std_ViewZoomIn/ru|Std ViewZoomIn]]
|[[Std_ViewZoomIn/ru|Команда "Увеличить"]]
|[[Std_ViewBoxZoom/ru|Std ViewBoxZoom]]
|[[Std_ViewBoxZoom/ru|Команда "Увеличить область"]]
|[[Std_View_Menu/ru|Std View Menu]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewZoomIn.svg
|IconL=Std_ViewZoomIn.svg
|IconR=Std_ViewBoxZoom.svg
|IconR=Std_ViewBoxZoom.svg
Line 10: Line 10:
}}
}}


<div class="mw-translate-fuzzy">
{{GuiCommand/ru
{{GuiCommand/ru
|Icon=Zoom-out.svg
|Name=Std ViewZoomOut
|Name=Std ViewZoomOut
|Name/ru=Уменьшить
|Name/ru=Уменьшить
|MenuLocation=[[Std View Menu/ru|Вид]] → Масштаб‏‎ → Уменьшить
|MenuLocation=Вид → Масштаб‏‎ → Уменьшить
|Workbenches=All
|Workbenches=All
|Shortcut=Ctrl + -
|Shortcut={{KEY|Ctrl}}+{{KEY|-}}
|SeeAlso=[[Std ViewZoomIn/ru|Увеличить]], [[Std ViewBoxZoom/ru|Увеличить область]]
|SeeAlso=[[Std_ViewZoomIn/ru|Увеличить]], [[Std_ViewBoxZoom/ru|Увеличить область]]
}}
}}
</div>


==Описание==
==Description==


The '''Std ViewZoomOut''' command zooms out in the active [[3D_view|3D view]].
The '''Std ViewZoomOut''' command zooms out in the active [[3D_view|3D view]].


==Применение==
==Usage==


# There are several ways to invoke the command:
# There are several ways to invoke the command:
Line 32: Line 29:
#* Use the keyboard shortcut: {{KEY|Ctrl}}+{{KEY|-}}.
#* Use the keyboard shortcut: {{KEY|Ctrl}}+{{KEY|-}}.


==Примечания==
==Notes==


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


==Настройки==
==Preferences==


* The zoom factor can be changed in the preferences: {{MenuCommand|Edit → Preferences... → Display → Navigation → Zoom step}}. This setting also affects scroll wheel zoom. See [[Preferences_Editor#Navigation|Preferences Editor]].
* The zoom factor can be changed in the preferences: {{MenuCommand|Edit → Preferences... → Display → Navigation → Zoom step}}. This setting also affects scroll wheel zoom. See [[Preferences_Editor#Navigation|Preferences Editor]].
Line 42: Line 39:
==Scripting==
==Scripting==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|Смотрите так же:}} [[FreeCAD_Scripting_Basics/ru|Основы составления скриптов в FreeCAD]].


To zoom out use the {{incode|zoomOut}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
To zoom out use the {{incode|zoomOut}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
Line 52: Line 49:
}}
}}


{{Docnav
{{Docnav/ru
|[[Std_ViewZoomIn|Std ViewZoomIn]]
|[[Std_ViewZoomIn/ru|Команда "Увеличить"]]
|[[Std_ViewBoxZoom|Std ViewBoxZoom]]
|[[Std_ViewBoxZoom/ru|Команда "Увеличить область"]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewZoomIn.svg
|IconL=Std_ViewZoomIn.svg
|IconR=Std_ViewBoxZoom.svg
|IconR=Std_ViewBoxZoom.svg

Latest revision as of 20:49, 4 August 2021

Other languages:

Уменьшить

Системное название
Std ViewZoomOut
Расположение в меню
Вид → Масштаб‏‎ → Уменьшить
Верстаки
All
Быстрые клавиши
Ctrl+-
Представлено в версии
-
См. также
Увеличить, Увеличить область

Описание

The Std ViewZoomOut command zooms out in the active 3D view.

Применение

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

Примечания

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

Настройки

  • 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

Смотрите так же: Основы составления скриптов в FreeCAD.

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