Std ViewIvStereoQuadBuff/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 34: Line 34:
==Scripting==
==Scripting==


{{Emphasis|Смотри так же:}} [[FreeCAD_Scripting_Basics/ru|Основы составления скриптов в FreeCAD]].
{{Emphasis|Смотрите так же:}} [[FreeCAD_Scripting_Basics/ru|Основы составления скриптов в 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.
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.

Revision as of 00:20, 3 August 2021

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.

Использование

  1. Select the View → Stereo → Stereo quad buffer option from the menu.

Настройки

  • Расстояние между глаз может быть изменено в настройках: Правка → Настройки... → Отображение → Трёхмерный вид → Расстояние между глаз для стерео режима. Смотри Редактор настроек.

Scripting

Смотрите так же: Основы составления скриптов в FreeCAD.

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