Std ViewIvStereoOff/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/it |Stereo a colonne interlacciate |Pubblica la posizione della camera |Std_View_Menu/it|Menu...")
(Created page with "{{GuiCommand/it |Name=Std ViewIvStereoOff |Name/it=Stereo off |MenuLocation=Visualizza → Stereo → Stereo off |Workbenches=Tutti |SeeAlso=Std_ViewIvStereoRedGreen/it|Ster...")
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/it
|Name=Std ViewIvStereoOff
|Name=Std ViewIvStereoOff
|MenuLocation=View → Stereo → Stereo Off
|Name/it=Stereo off
|MenuLocation=Visualizza → Stereo → Stereo off
|Workbenches=All
|Workbenches=Tutti
|SeeAlso=[[Std_ViewIvStereoRedGreen|Std ViewIvStereoRedGreen]], [[Std_ViewIvStereoQuadBuff|Std ViewIvStereoQuadBuff]], [[Std_ViewIvStereoInterleavedRows|Std ViewIvStereoInterleavedRows]], [[Std_ViewIvStereoInterleavedColumns|Std ViewIvStereoInterleavedColumns]]
|SeeAlso=[[Std_ViewIvStereoRedGreen/it|Stereo rosso/ciano]], [[Std_ViewIvStereoQuadBuff/it|Stereo quad buffer]], [[Std_ViewIvStereoInterleavedRows/it|Stereo a righe interlacciate]], [[Std_ViewIvStereoInterleavedColumns/it|Stereo a colonne interlacciate]]
}}
}}



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

Description

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

Usage

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

Scripting

See also: FreeCAD Scripting Basics.

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