Std ViewIvStereoOff/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{Docnav/it
{{Docnav/it
|[[Std_ViewIvStereoInterleavedColumns/it|Stereo a colonne interlacciate]]
|[[Std_ViewIvStereoInterleavedColumns/it|Stereo a colonne interlacciate]]
Line 10: Line 9:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{GuiCommand/it
{{GuiCommand/it
Line 20: Line 18:
}}
}}


<span id="Description"></span>
==Descrizione==
==Descrizione==


The '''Std ViewIvStereoOff''' command switches off stereo mode in the active [[3D_view|3D view]].
The '''Std ViewIvStereoOff''' command switches off stereo mode in the active [[3D_view|3D view]].


<span id="Usage"></span>
==Utilizzo==
==Utilizzo==


# Select the {{MenuCommand|View → Stereo → [[Image:Std_ViewIvStereoOff.svg|16px]] Stereo Off}} option from the menu.
# Select the {{MenuCommand|View → Stereo → [[Image:Std_ViewIvStereoOff.svg|16px]] Stereo Off}} option from the menu.


<span id="Scripting"></span>
==Script==
==Script==



Revision as of 21:04, 24 March 2023

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