Std ViewIvStereoInterleavedRows/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Emphasis|Vedere anche:}} Script di base per FreeCAD")
(Created page with "{{Docnav/it |Stereo quad buffer |Stereo a colonne interlacciate |Menu Visualizza...")
Line 43: Line 43:
}}
}}


{{Docnav
{{Docnav/it
|[[Std_ViewIvStereoQuadBuff|Std ViewIvStereoQuadBuff]]
|[[Std_ViewIvStereoQuadBuff/it|Stereo quad buffer]]
|[[Std_ViewIvStereoInterleavedColumns|Std ViewIvStereoInterleavedColumns]]
|[[Std_ViewIvStereoInterleavedColumns/it|Stereo a colonne interlacciate]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu/it|Menu Visualizza]]
|IconL=Std_ViewIvStereoQuadBuff.svg
|IconL=Std_ViewIvStereoQuadBuff.svg
|IconR=Std_ViewIvStereoInterleavedColumns.svg
|IconR=Std_ViewIvStereoInterleavedColumns.svg

Revision as of 21:01, 15 April 2020

Other languages:

Stereo a righe interlacciate

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

Descrizione

The Std ViewIvStereoInterleavedRows command changes the active 3D view to interleaved rows 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 Rows 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

Vedere anche: Script di base per FreeCAD

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