Std ViewIvStereoOff/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Utilizzo==")
(Created page with "==Script==")
Line 26: Line 26:
# 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==
==Script==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

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

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

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