Std ViewZoomOut/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Descrizione==")
(Created page with "{{Docnav/it |Ingrandisci |Finestra di ingrandimento |Menu Visualizza |IconL=Std_ViewZoomIn.svg |IconR=Std_Vie...")
(6 intermediate revisions by the same user not shown)
Line 21: Line 21:
==Descrizione==
==Descrizione==


Il comando '''Std ViewZoomOut''' riduce la [[3D_view/it|vista 3D]] attiva.
<div class="mw-translate-fuzzy">
==Descrizione==
Rende il contenuto più piccolo nella vista 3D.
</div>


==Usage==
==Utilizzo==


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 34: Line 31:
</div>
</div>


==Notes==
== Note ==


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


==Preferences==
==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]].


==Scripting==
==Script==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|Vedere anche:}} [[FreeCAD Scripting Basics/it|Script di base per FreeCAD]]


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


{{Docnav
{{Docnav/it
|[[Std_ViewZoomIn|Std ViewZoomIn]]
|[[Std_ViewZoomIn/it|Ingrandisci]]
|[[Std_ViewBoxZoom|Std ViewBoxZoom]]
|[[Std_ViewBoxZoom/it|Finestra di ingrandimento]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/it|Menu Visualizza]]
|IconL=Std_ViewZoomIn.svg
|IconL=Std_ViewZoomIn.svg
|IconR=Std_ViewBoxZoom.svg
|IconR=Std_ViewBoxZoom.svg

Revision as of 19:28, 16 April 2020

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