Std ViewIvStereoOff/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Emphasis|Vedere anche:}} Script di base per FreeCAD")
(Created page with "{{Docnav/it |Stereo a colonne interlacciate |Pubblica la posizione della camera |Std_View_Menu/it|Menu...")
Line 39: Line 39:
}}
}}


{{Docnav
{{Docnav/it
|[[Std_ViewIvStereoInterleavedColumns|Std ViewIvStereoInterleavedColumns]]
|[[Std_ViewIvStereoInterleavedColumns/it|Stereo a colonne interlacciate]]
|[[Std_ViewIvIssueCamPos|Std ViewIvIssueCamPos]]
|[[Std_ViewIvIssueCamPos/it|Pubblica la posizione della camera]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/it|Menu Visualizza]]
|IconL=Std_ViewIvStereoInterleavedColumns.svg
|IconL=Std_ViewIvStereoInterleavedColumns.svg
|IconR=Std_ViewIvIssueCamPos.svg
|IconR=Std_ViewIvIssueCamPos.svg

Revision as of 21:14, 15 April 2020

Other languages:

Stereo off

Posizione nel menu
Visualizza → Stereo → Stereo off
Ambiente
Tutti
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Stereo rosso/ciano, Stereo quad buffer, Stereo a righe interlacciate, Stereo a colonne interlacciate

Descrizione

The Std ViewIvStereoOff command switches off stereo mode in the active 3D view.

Utilizzo

  1. Select the View → Stereo → Stereo Off option from the menu.

Script

Vedere anche: Script di base per FreeCAD

To change the view to non-stereo use the setStereoType method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.setStereoType('None')
FreeCADGui.ActiveDocument.ActiveView.getStereoType()