Std ViewIvStereoOff/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Script==")
(Created page with "{{Emphasis|Vedere anche:}} Script di base per FreeCAD")
Line 28: Line 28:
==Script==
==Script==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|Vedere anche:}} [[FreeCAD Scripting Basics/it|Script di base per FreeCAD]]


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.

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

Vedere anche: Script di base per FreeCAD

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