Std ViewZoomOut/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Utilizzo==")
(Created page with "== Note ==")
Line 31: 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.

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.

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