Std ViewIvStereoInterleavedRows/de: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Created page with "Um die Ansicht auf Horizontales Interlacing (interleaved rows) zu ändern, wird die Methode {{incode|setStereoType}} des ActiveView-Objekts verwendet. Diese Methode steht nicht zur Verfügung, wenn sich FreeCAD im Konsolenmodus befindet.")
Line 17: Line 17:
}}
}}


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


The '''Std ViewIvStereoInterleavedRows''' command changes the active [[3D_view|3D view]] to interleaved rows 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 ViewIvStereoInterleavedRows''' command changes the active [[3D_view|3D view]] to interleaved rows 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>
==Anwendung==
==Anwendung==


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


To change the view to interleaved rows stereo use the {{incode|setStereoType}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
Um die Ansicht auf Horizontales Interlacing (interleaved rows) zu ändern, wird die Methode {{incode|setStereoType}} des ActiveView-Objekts verwendet. Diese Methode steht nicht zur Verfügung, wenn sich FreeCAD im Konsolenmodus befindet.


{{Code|code=
{{Code|code=

Revision as of 15:34, 5 February 2023

Std ViewIvStereoInterleavedRows

Menu location
View → Stereo → Stereo interleaved Rows
Workbenches
All
Default shortcut
None
Introduced in version
-
See also
Std ViewIvStereoRedGreen, Std ViewIvStereoQuadBuff, Std ViewIvStereoInterleavedColumns, Std ViewIvStereoOff

Beschreibung

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.

Anwendung

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

Preferences

  • 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.

Scripting

See also: FreeCAD Scripting Basics.

Um die Ansicht auf Horizontales Interlacing (interleaved rows) zu ändern, wird die Methode setStereoType des ActiveView-Objekts verwendet. Diese Methode steht nicht zur Verfügung, wenn sich FreeCAD im Konsolenmodus befindet.

import FreeCADGui

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