Visualizza: Stereo off

From FreeCAD Documentation
Revision as of 21:14, 15 April 2020 by Renatorivo (talk | contribs) (Created page with "{{GuiCommand/it |Name=Std ViewIvStereoOff |Name/it=Stereo off |MenuLocation=Visualizza → Stereo → Stereo off |Workbenches=Tutti |SeeAlso=Std_ViewIvStereoRedGreen/it|Ster...")
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()