Std ViewIvStereoQuadBuff/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/ru |Name=Std ViewIvStereoQuadBuff |Name/ru=Std ViewIvStereoQuadBuff |MenuLocation=Вид → Стерео → Четверная буферизация стере...")
(Created page with "==Описание==")
Line 18: Line 18:
}}
}}


==Описание==
==Description==


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

Revision as of 18:20, 7 May 2020

Other languages:

Std ViewIvStereoQuadBuff

Системное название
Std ViewIvStereoQuadBuff
Расположение в меню
Вид → Стерео → Четверная буферизация стерео
Верстаки
All
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Std ViewIvStereoRedGreen, Std ViewIvStereoInterleavedRows, Std ViewIvStereoInterleavedColumns, Std ViewIvStereoOff

Описание

The Std ViewIvStereoQuadBuff command changes the active 3D view to quad buffer stereo view mode. To use this stereo mode a special graphics card, a special display and shutter glasses are requires.

Usage

  1. Select the View → Stereo → Stereo quad buffer 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.

To change the view to quad buffer 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('QuadBuffer')
FreeCADGui.ActiveDocument.ActiveView.getStereoType()