Std ViewDimetric/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 12: Line 12:
</div>
</div>


<div class="mw-translate-fuzzy">
<!--Empty=1 to suppress icon-->
<!--Empty=1 to suppress icon-->
{{GuiCommand/ru
{{GuiCommand/ru
Line 21: Line 22:
|SeeAlso=[[Std_ViewIsometric/ru|Std ViewIsometric]], [[Std_ViewTrimetric/ru|Std ViewTrimetric]]
|SeeAlso=[[Std_ViewIsometric/ru|Std ViewIsometric]], [[Std_ViewTrimetric/ru|Std ViewTrimetric]]
}}
}}
</div>


==Description==
==Description==
Line 31: Line 33:
==Использование==
==Использование==


# Select the {{MenuCommand|View → Standard views → Axonometric → Dimetric}} option from the menu.
# Select the {{MenuCommand|View → Standard views → Axonometric → [[Image:Std_ViewDimetric.svg|16px]] Dimetric}} option from the menu.


==Scripting==
==Scripting==
Line 45: Line 47:
FreeCADGui.ActiveDocument.ActiveView.getViewDirection()
FreeCADGui.ActiveDocument.ActiveView.getViewDirection()
}}
}}



<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">

Revision as of 14:59, 6 January 2021

Other languages:

Std ViewDimetric

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

Description

The Std ViewDimetric command realigns the camera in the active 3D view to obtain a dimetric view. For a truly dimetric view the 3D view must be in orthographic mode, but the command also works if the view is in perspective mode.

The axis cross and a cube in dimetric view

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

  1. Select the View → Standard views → Axonometric → Dimetric option from the menu.

Scripting

See also: FreeCAD Scripting Basics.

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

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.viewDimetric()
FreeCADGui.ActiveDocument.ActiveView.getViewDirection()