Std ViewDimetric: Difference between revisions

From FreeCAD Documentation
(|Empty=1 to suppress icon)
(Marked this version for translation)
Line 1: Line 1:
<languages/>
<languages/>
<translate>
<translate>
<!--T:1-->
{{GuiCommand
{{GuiCommand
|Name=Std ViewDimetric
|Name=Std ViewDimetric
Line 9: Line 10:
}}
}}


==Description==
==Description== <!--T:2-->


<!--T:3-->
[[Std_ViewDimetric|Std ViewDimetric]] command puts the camera in the [[3D view|3D view]] in [https://en.wikipedia.org/wiki/Axonometric_projection#Three_types axonometric dimetric] projection, with a view direction {{incode|[-0.3333, 0.8819, -0.3333]}}.
[[Std_ViewDimetric|Std ViewDimetric]] command puts the camera in the [[3D view|3D view]] in [https://en.wikipedia.org/wiki/Axonometric_projection#Three_types axonometric dimetric] projection, with a view direction {{incode|[-0.3333, 0.8819, -0.3333]}}.


Line 17: Line 19:
<translate>
<translate>


==How to use==
==How to use== <!--T:4-->


<!--T:5-->
* Go to the menu {{MenuCommand|View → Standard views → Axonometric → [[Std_ViewDimetric|Dimetric]]}}.
* Go to the menu {{MenuCommand|View → Standard views → Axonometric → [[Std_ViewDimetric|Dimetric]]}}.


== Scripting ==
== Scripting == <!--T:6-->


<!--T:7-->
The dimetric view can be set from the [[Python console|Python console]].
The dimetric view can be set from the [[Python console|Python console]].


<!--T:8-->
It is a method of the {{incode|ActiveView}} of the {{incode|ActiveDocument}}. The {{incode|ActiveView}} only exists when the graphical interface is available; it does not exist when FreeCAD is used in purely console mode.
It is a method of the {{incode|ActiveView}} of the {{incode|ActiveDocument}}. The {{incode|ActiveView}} only exists when the graphical interface is available; it does not exist when FreeCAD is used in purely console mode.


Line 36: Line 41:
<translate>
<translate>


<!--T:9-->
{{Std Base}}
{{Std Base}}
{{Userdocnavi}}
{{Userdocnavi}}

Revision as of 15:44, 24 November 2019

Std ViewDimetric

Menu location
View → Standard views → Axonometric → Dimetric
Workbenches
All
Default shortcut
None
Introduced in version
-
See also
ViewIsometric, ViewTrimetric

Description

Std ViewDimetric command puts the camera in the 3D view in axonometric dimetric projection, with a view direction [-0.3333, 0.8819, -0.3333].

How to use

  • Go to the menu View → Standard views → Axonometric → Dimetric.

Scripting

The dimetric view can be set from the Python console.

It is a method of the ActiveView of the ActiveDocument. The ActiveView only exists when the graphical interface is available; it does not exist when FreeCAD is used in purely console mode.

import FreeCADGui as Gui
Gui.ActiveDocument.ActiveView.viewDimetric()

Gui.ActiveDocument.ActiveView.getViewDirection()