Std ViewIvStereoQuadBuff/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{Docnav/it
{{Docnav/it
|[[Std_ViewIvStereoRedGreen/it|Stereo rosso/ciano]]
|[[Std_ViewIvStereoRedGreen/it|Stereo rosso/ciano]]
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 ViewIvStereoQuadBuff''' command changes the active [[3D_view|3D view]] to quad buffer stereo view mode. To use this stereo mode a special graphics card, a special display and [https://en.wikipedia.org/wiki/Active_shutter_3D_system shutter glasses] are requires.
Il comando '''Stereo quad buffer''' cambia la [[3D_view/it|Vista 3D]] attiva in modalità di visualizzazione stereo quad buffer. Per utilizzare questa modalità stereo sono necessari una scheda grafica speciale, un display speciale e [https://en.wikipedia.org/wiki/Active_shutter_3D_system occhiali con otturatore].


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


# Select the {{MenuCommand|View → Stereo → [[Image:Std_ViewIvStereoQuadBuff.svg|16px]] Stereo quad buffer}} option from the menu.
# Selezionare l'opzione {{MenuCommand|Visualizza → Stereo → [[Image:Std_ViewIvStereoQuadBuff.svg|16px]] Stereo quad buffer}} dal menu.


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


* The eye to eye distance can be changed in the preferences: {{MenuCommand|EditPreferences... → Display → 3D ViewEye to eye distance for stereo modes}}. See [[Preferences_Editor#3D_View|Preferences Editor]].
* La distanza occhio-occhio può essere modificata nelle preferenze: {{MenuCommand|ModificaPreferenze... → Visualizzazione Vista 3D → Distanza tra gli occhi per le modalità stereo}}. Vedere [[Preferences_Editor/it#Vista 3D|Editor delle preferenze]].


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


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


To change the view to quad buffer stereo use the {{incode|setStereoType}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
Per modificare la visualizzazione in stereo quad buffer utilizzare il metodo {{incode|setStereoType}} dell'oggetto ActiveView. Questo metodo non è disponibile se FreeCAD è in modalità console.


{{Code|code=
{{Code|code=
Line 45: Line 47:
}}
}}


<div class="mw-translate-fuzzy">
{{Docnav/it
{{Docnav/it
|[[Std_ViewIvStereoRedGreen/it|Stereo rosso/ciano]]
|[[Std_ViewIvStereoRedGreen/it|Stereo rosso/ciano]]
Line 54: Line 55:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{Std Base navi{{#translation:}}}}
{{Std Base navi{{#translation:}}}}

Latest revision as of 21:03, 24 March 2023

Other languages:

Stereo quad buffer

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

Descrizione

Il comando Stereo quad buffer cambia la Vista 3D attiva in modalità di visualizzazione stereo quad buffer. Per utilizzare questa modalità stereo sono necessari una scheda grafica speciale, un display speciale e occhiali con otturatore.

Utilizzo

  1. Selezionare l'opzione Visualizza → Stereo → Stereo quad buffer dal menu.

Preferenze

  • La distanza occhio-occhio può essere modificata nelle preferenze: Modifica → Preferenze... → Visualizzazione → Vista 3D → Distanza tra gli occhi per le modalità stereo. Vedere Editor delle preferenze.

Script

Vedere anche: Script di base per FreeCAD

Per modificare la visualizzazione in stereo quad buffer utilizzare il metodo setStereoType dell'oggetto ActiveView. Questo metodo non è disponibile se FreeCAD è in modalità console.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.setStereoType('QuadBuffer')
FreeCADGui.ActiveDocument.ActiveView.getStereoType()