Std ViewZoomIn/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:


{{Docnav/ru
{{Docnav/ru
|[[Std_ViewIvIssueCamPos/ru|ViewIvIssueCamPos]]
|[[Std_ViewIvIssueCamPos/ru|Команда "Выводить положения камеры"]]
|[[Std_ViewZoomOut/ru|ViewZoomOut]]
|[[Std_ViewZoomOut/ru|Команда "Уменьшить"]]
|[[Std_View_Menu/ru|Std View Menu]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewIvIssueCamPos.svg
|IconL=Std_ViewIvIssueCamPos.svg
|IconR=Std_ViewZoomOut.svg
|IconR=Std_ViewZoomOut.svg
Line 23: Line 23:
The '''Std ViewZoomIn''' command zooms in in the active [[3D_view|3D view]].
The '''Std ViewZoomIn''' command zooms in in the active [[3D_view|3D view]].


==Применение==
==Использование==


# There are several ways to invoke the command:
# There are several ways to invoke the command:
Line 39: Line 39:
==Scripting==
==Scripting==


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


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


{{Docnav/ru
{{Docnav/ru
|[[Std_ViewIvIssueCamPos/ru|ViewIvIssueCamPos]]
|[[Std_ViewIvIssueCamPos/ru|Команда "Выводить положения камеры"]]
|[[Std_ViewZoomOut/ru|ViewZoomOut]]
|[[Std_ViewZoomOut/ru|Команда "Уменьшить"]]
|[[Std_View_Menu/ru|Std View Menu]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewIvIssueCamPos.svg
|IconL=Std_ViewIvIssueCamPos.svg
|IconR=Std_ViewZoomOut.svg
|IconR=Std_ViewZoomOut.svg

Latest revision as of 20:49, 4 August 2021

Other languages:

Увеличить

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

Описание

The Std ViewZoomIn command zooms in in the active 3D view.

Применение

  1. There are several ways to invoke the command:
    • Select the View → Zoom → Zoom In 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 in use the zoomIn method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.zoomIn()