Std ViewIsometric/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Created page with "{{Emphasis|Смотрите так же:}} Основы составления скриптов в FreeCAD.")
Line 42: Line 42:
==Scripting==
==Scripting==


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


To change to isometric view use the {{incode|viewIsometric}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
To change to isometric view use the {{incode|viewIsometric}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.

Revision as of 00:24, 3 August 2021

Other languages:

Std ViewIsometric

Системное название
Std ViewIsometric
Расположение в меню
Вид → Стандартные виды → Axonometric → Изометрия
Верстаки
All
Быстрые клавиши
0
Представлено в версии
-
См. также
Std ViewDimetric, Std ViewTrimetric

Описание

Команда Std ViewIsometric перестраивает камеру в активном окне трёхмерного вида для получения изометрического вида. Для истинно изометрического вида трехмерный вид должен находиться в ортогональном режиме, но команда также работает, если вид находится в режиме перспективы.

The axis cross and a cube in isometric view

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

  1. There are several ways to invoke the command:
    • Press the Std ViewIsometric button.
    • Select the View → Standard views → Axonometric → Isometric option from the menu.
    • Select the Standard views → Isometric option from the 3D view context menu.
    • Use the keyboard shortcut: 0.

Примечания

  • It is also possible to switch to isometric view via the Mini-cube menu of the Navigation Cube.

Scripting

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

To change to isometric view use the viewIsometric method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.viewIsometric()
FreeCADGui.ActiveDocument.ActiveView.getViewDirection()