Std ViewZoomIn/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Created page with "{{Docnav/it |Pubblica la posizione della camera |Riduci |Menu Visualizza |IconL=Std_ViewIvIssueCamPos....")
Line 1: Line 1:
<languages/>
<languages/>


{{Docnav
{{Docnav/it
|[[Std_ViewIvIssueCamPos|Std ViewIvIssueCamPos]]
|[[Std_ViewIvIssueCamPos/it|Pubblica la posizione della camera]]
|[[Std_ViewZoomOut|Std ViewZoomOut]]
|[[Std_ViewZoomOut/it|Riduci]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/it|Menu Visualizza]]
|IconL=Std_ViewIvIssueCamPos.svg
|IconL=Std_ViewIvIssueCamPos.svg
|IconR=Std_ViewZoomOut.svg
|IconR=Std_ViewZoomOut.svg

Revision as of 21:25, 15 April 2020

Zoom In

Posizione nel menu
Visualizza → Zoom‏‎ → Zoom In
Ambiente
Tutti
Avvio veloce
Ctrl + +
Introdotto nella versione
-
Vedere anche
Zoom Out, Zoom finestra

Description

Descrizione

Rende più grande il contenuto nella vista 3D.

Usage

Uso

  • Andare in Visualizza → Zoom‏‎ → Zoom In o premere Ctrl + +.
  • La vista può anche essere ingrandita con la rotellina del mouse.

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