Std ViewZoomOut/it: Difference between revisions

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


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


{{GuiCommand/it
{{GuiCommand/it
Line 21: Line 19:
}}
}}


<span id="Description"></span>
==Descrizione==
==Descrizione==


Il comando '''Std ViewZoomOut''' riduce la [[3D_view/it|vista 3D]] attiva.
Il comando '''Std ViewZoomOut''' riduce la [[3D_view/it|vista 3D]] attiva.


<span id="Usage"></span>
==Utilizzo==
==Utilizzo==


Line 33: Line 33:
</div>
</div>


<span id="Notes"></span>
== Note ==
== Note ==


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


<span id="Preferences"></span>
==Preferenze==
==Preferenze==


* 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]].


<span id="Scripting"></span>
==Script==
==Script==



Revision as of 21:34, 24 March 2023

Riduci

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

Descrizione

Il comando Std ViewZoomOut riduce la vista 3D attiva.

Utilizzo

Uso

  • Andare in Visualizza → Zoom‏‎ → Zoom Out o premere Ctrl + -.
  • La vista può anche essere rimpicciolita 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 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()