Std ViewIvStereoOff: Difference between revisions

From FreeCAD Documentation
(Created. 'In progress' for now.)
 
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Page in progress}}

<translate>
<translate>


<!--T:1-->
{{Docnav
{{Docnav
|[[Std_ViewIvStereoInterleavedColumns|Std ViewIvStereoInterleavedColumns]]
|[[Std_ViewIvStereoInterleavedColumns|ViewIvStereoInterleavedColumns]]
|[[Std_ViewIvIssueCamPos|Std ViewIvIssueCamPos]]
|[[Std_ViewIvIssueCamPos|ViewIvIssueCamPos]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewIvStereoInterleavedColumns.svg
|IconL=Std_ViewIvStereoInterleavedColumns.svg
Line 14: Line 12:
}}
}}


<!--T:2-->
{{GuiCommand
{{GuiCommand
|Name=Std ViewIvStereoOff
|Name=Std ViewIvStereoOff
Line 21: Line 20:
}}
}}


==Description==
==Description== <!--T:3-->


<!--T:4-->
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== <!--T:5-->


<!--T:6-->
# 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.


==Scripting==
==Scripting== <!--T:7-->


<!--T:8-->
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].


<!--T:9-->
To change the view to non-stereo use the {{incode|setStereoType}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
To change the view to non-stereo use the {{incode|setStereoType}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.


Line 44: Line 47:
<translate>
<translate>


<!--T:10-->
{{Docnav
{{Docnav
|[[Std_ViewIvStereoInterleavedColumns|Std ViewIvStereoInterleavedColumns]]
|[[Std_ViewIvStereoInterleavedColumns|ViewIvStereoInterleavedColumns]]
|[[Std_ViewIvIssueCamPos|Std ViewIvIssueCamPos]]
|[[Std_ViewIvIssueCamPos|ViewIvIssueCamPos]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewIvStereoInterleavedColumns.svg
|IconL=Std_ViewIvStereoInterleavedColumns.svg

Latest revision as of 20:37, 22 December 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()