Std ViewIvStereoOff/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/it |Name=Std ViewIvStereoOff |Name/it=Stereo off |MenuLocation=Visualizza → Stereo → Stereo off |Workbenches=Tutti |SeeAlso=Std_ViewIvStereoRedGreen/it|Ster...")
(Created page with "==Descrizione==")
Line 18: Line 18:
}}
}}


==Description==
==Descrizione==


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

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.

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