Std ViewZoomIn/it: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{Docnav/it
{{Docnav/it
|[[Std_ViewIvIssueCamPos/it|Pubblica la posizione della camera]]
|[[Std_ViewIvIssueCamPos/it|Pubblica la posizione della camera]]
Line 9: Line 10:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{GuiCommand/it
{{GuiCommand/it
Line 51: Line 53:
}}
}}


<div class="mw-translate-fuzzy">
{{Docnav/it
{{Docnav/it
|[[Std_ViewIvIssueCamPos/it|Pubblica la posizione della camera]]
|[[Std_ViewIvIssueCamPos/it|Pubblica la posizione della camera]]
Line 59: Line 62:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


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

Revision as of 18:56, 30 December 2020

Ingrandisci

Posizione nel menu
Visualizza → Zoom‏‎ → Ingrandisci
Ambiente
Tutti
Avvio veloce
Ctrl++
Introdotto nella versione
-
Vedere anche
Riduci, Finestra di ingrandimento

Descrizione

Il comando Std ViewZoomIn ingrandisce la vista 3D attiva.

Utilizzo

Uso

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

Note

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

Preferenze

  • 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.

Script

Vedere anche: Script di base per 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()