Std ViewIvStereoOff: Difference between revisions

From FreeCAD Documentation
(Created. 'In progress' for now.)
 
(Removed 'In Progress'.)
Line 1: Line 1:
<languages/>
<languages/>

{{Page in progress}}

<translate>
<translate>


Line 23: Line 20:
==Description==
==Description==


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


==Usage==
==Usage==

Revision as of 14:46, 5 April 2020

Std ViewIvStereoOff

Menu location
View → Stereo → Stereo Off
Workbenches
All
Default shortcut
None
Introduced in version
-
See also
Std ViewIvStereoRedGreen, Std ViewIvStereoQuadBuff, Std ViewIvStereoInterleavedRows, Std ViewIvStereoInterleavedColumns

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