Std ViewIvStereoInterleavedColumns/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{Docnav/it
{{Docnav/it
|[[Std_ViewIvStereoInterleavedRows/it|Stereo a righe interlacciate]]
|[[Std_ViewIvStereoInterleavedRows/it|Stereo a righe interlacciate]]
Line 10: Line 9:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{GuiCommand/it
{{GuiCommand/it
Line 20: Line 18:
}}
}}


<span id="Description"></span>
==Descrizione==
==Descrizione==


The '''Std ViewIvStereoInterleavedColumns''' command changes the active [[3D_view|3D view]] to interleaved columns stereo view mode. To use this stereo mode a special graphics card, a special display and [https://en.wikipedia.org/wiki/Polarized_3D_system glasses with polarized lenses] are requires.
The '''Std ViewIvStereoInterleavedColumns''' command changes the active [[3D_view|3D view]] to interleaved columns stereo view mode. To use this stereo mode a special graphics card, a special display and [https://en.wikipedia.org/wiki/Polarized_3D_system glasses with polarized lenses] are requires.


<span id="Usage"></span>
==Utilizzo==
==Utilizzo==


# Select the {{MenuCommand|View → Stereo → [[Image:Std_ViewIvStereoInterleavedColumns.svg|16px]] Stereo interleaved Columns}} option from the menu.
# Select the {{MenuCommand|View → Stereo → [[Image:Std_ViewIvStereoInterleavedColumns.svg|16px]] Stereo interleaved Columns}} option from the menu.


<span id="Preferences"></span>
==Preferenze==
==Preferenze==


* 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]].


<span id="Scripting"></span>
==Script==
==Script==



Revision as of 20:57, 24 March 2023

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

Vedere anche: Script di base per FreeCAD

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