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....")
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{Docnav/ru
{{Docnav/ru
|[[Std_ViewZoomIn/ru|Std ViewZoomIn]]
|[[Std_ViewZoomIn/ru|Std ViewZoomIn]]
Line 9: Line 10:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{GuiCommand/ru
{{GuiCommand/ru
Line 49: Line 51:
}}
}}


<div class="mw-translate-fuzzy">
{{Docnav/ru
{{Docnav/ru
|[[Std_ViewZoomIn/ru|Std ViewZoomIn]]
|[[Std_ViewZoomIn/ru|Std ViewZoomIn]]
Line 57: Line 60:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{Std Base navi{{#translation:}}}}
{{Std Base navi{{#translation:}}}}

Revision as of 18:56, 30 December 2020

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