Std PerspectiveCamera/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Created page with "{{Docnav/it |Vista otografica |Schermo intero della finestra principale |Menu Visualizza |IconL=St...")
Line 1: Line 1:
<languages/>
<languages/>


{{Docnav
{{Docnav/it
|[[Std_OrthographicCamera|Std OrthographicCamera]]
|[[Std_OrthographicCamera/it|Vista otografica]]
|[[Std_MainFullscreen|Std MainFullscreen]]
|[[Std_MainFullscreen/it|Schermo intero della finestra principale]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/it|Menu Visualizza]]
|IconL=Std_OrthographicCamera.svg
|IconL=Std_OrthographicCamera.svg
|IconR=Std_MainFullscreen.svg
|IconR=Std_MainFullscreen.svg

Revision as of 19:22, 14 April 2020

Vista in prospettiva

Posizione nel menu
Visualizza → Vista in prospettiva
Ambiente
Tutti
Avvio veloce
P
Introdotto nella versione
-
Vedere anche
Vista ortografica

Descrizione

Produce una visualizzazione in prospettiva degli oggetti della scena.

Two cubes with the same dimensions in perspective view

Utilizzo

Scegliere Visualizza → Vista in prospettiva dal menu principale.

  1. There are several ways to invoke the command:
    • Select the View → Perspective view option from the menu.
    • Use the keyboard shortcut: V then P.

Notes

  • It is also possible to switch to perspective view mode via the Mini-cube menu of the Navigation Cube.

Preferences

  • The camera type can be changed in the preferences: Edit → Preferences... → Display → 3D View → Camera type. The selected type will be used for all 3D views of all opened documents and also for new documents. See Preferences Editor.

Scripting

See also: FreeCAD Scripting Basics.

To change the view to perspective use the setCameraType method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.setCameraType('Perspective')
FreeCADGui.ActiveDocument.ActiveView.getCameraType()