Std OrthographicCamera/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/it |Crea una nuova vista |Vista in prospettiva |Menu Visualizza |IconL=Std_ViewCreate.svg |Ico...")
No edit summary
Line 10: Line 10:
}}
}}


{{GuiCommand/it|Name=Std_OrthographicCamera|Name/it=Vista ortografica|MenuLocation=[[Std_View Menu/it|Visualizza]] → Vista ortografica|Workbenches=Tutti|Shortcut={{KEY|V}} {{KEY|O}}|SeeAlso=[[Std_PerspectiveCamera/it|Vista in prospettiva]]}}
<div class="mw-translate-fuzzy">
{{GuiCommand/it|Name=Std_OrthographicCamera|Name/it=Vista ortografica|MenuLocation=[[Std_View Menu/it|Visualizza]] → Vista ortografica|Workbenches=Tutti|Shortcut=O|SeeAlso=[[Std_PerspectiveCamera/it|Vista in prospettiva]]}}
</div>


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">

Revision as of 21:22, 13 April 2020

Vista ortografica

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

Descrizione

Produce una visualizzazione di tipo ortografico degli oggetti della scena.

Secondo Wikipedia Ortografico è: ... un metodo per rappresentare un oggetto tridimensionale in due dimensioni ...

Two cubes with the same dimensions in orthographic view

Utilizzo

Scegliere Visualizza → Vista ortografica dal menu principale.

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

Notes

  • It is also possible to switch to orthographic 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 orthographic 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('Orthographic')
FreeCADGui.ActiveDocument.ActiveView.getCameraType()