Std ViewIvStereoInterleavedColumns/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Preferenze==")
(Created page with "==Script==")
Line 30: Line 30:
* The eye to eye distance can be changed in the preferences: {{MenuCommand|Edit → Preferences... → Display → 3D View → Eye to eye distance for stereo modes}}. See [[Preferences_Editor#3D_View|Preferences Editor]].
* The eye to eye distance can be changed in the preferences: {{MenuCommand|Edit → Preferences... → Display → 3D View → Eye to eye distance for stereo modes}}. See [[Preferences_Editor#3D_View|Preferences Editor]].


==Scripting==
==Script==


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

Revision as of 21:09, 15 April 2020

Other languages:

Stereo a colonne interlacciate

Posizione nel menu
Visualizza → Stereo → Stereo a colonne interlacciate
Ambiente
Tutti
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Stereo rosso/ciano, Stereo quad buffer, Stereo a righe interlacciate, Stereo off

Descrizione

The Std ViewIvStereoInterleavedColumns command changes the active 3D view to interleaved columns stereo view mode. To use this stereo mode a special graphics card, a special display and glasses with polarized lenses are requires.

Utilizzo

  1. Select the View → Stereo → Stereo interleaved Columns option from the menu.

Preferenze

  • The eye to eye distance can be changed in the preferences: Edit → Preferences... → Display → 3D View → Eye to eye distance for stereo modes. See Preferences Editor.

Script

See also: FreeCAD Scripting Basics.

To change the view to interleaved columns 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('InterleavedColumns')
FreeCADGui.ActiveDocument.ActiveView.getStereoType()