Std ViewIvStereoInterleavedColumns/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "==Использование==")
(Created page with "{{Emphasis|Смотри так же:}} Основы скриптов в FreeCAD.")
Line 32: Line 32:
==Scripting==
==Scripting==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|Смотри так же:}} [[FreeCAD_Scripting_Basics/ru|Основы скриптов в FreeCAD]].


To change the view to interleaved columns 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 interleaved columns stereo use the {{incode|setStereoType}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.

Revision as of 18:35, 7 May 2020

Other languages:

Std ViewIvStereoInterleavedColumns

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

Описание

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.

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

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

Настройки

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

Scripting

Смотри так же: Основы скриптов в 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()