Std ViewIsometric: Difference between revisions

From FreeCAD Documentation
(New image for the isometric view)
(Marked this version for translation)
Line 1: Line 1:
<languages/>
<languages/>
<translate>
<translate>
<!--T:1-->
{{GuiCommand
{{GuiCommand
|Name=Std ViewIsometric
|Name=Std ViewIsometric
Line 9: Line 10:
}}
}}


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


<!--T:3-->
Puts the camera in the [[3D view|3D view]] in axonometric isometric view, with a view direction {{incode|[-0.5773, 0.5773, -0.5773]}}.
Puts the camera in the [[3D view|3D view]] in axonometric isometric view, with a view direction {{incode|[-0.5773, 0.5773, -0.5773]}}.


Line 16: Line 18:
[[File:FreeCAD_views_front.svg]]
[[File:FreeCAD_views_front.svg]]
<translate>
<translate>
<!--T:4-->
{{Caption|The isometric view looks slightly to the left (negative X), slightly to the back (positive Y), and slightly down (negative Z).}}
{{Caption|The isometric view looks slightly to the left (negative X), slightly to the back (positive Y), and slightly down (negative Z).}}


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


<!--T:6-->
* Go to the menu {{MenuCommand|View → Standard views → Axonometric → [[File:Std_ViewIsometric.svg|16px]] [[Std_ViewIsometric|Isometric]]}}.
* Go to the menu {{MenuCommand|View → Standard views → Axonometric → [[File:Std_ViewIsometric.svg|16px]] [[Std_ViewIsometric|Isometric]]}}.
* Or press the {{Button|[[File:Std_ViewIsometric.svg|16px]] [[Std_ViewIsometric|Isometric]]}} button.
* Or press the {{Button|[[File:Std_ViewIsometric.svg|16px]] [[Std_ViewIsometric|Isometric]]}} button.
* Or press {{KEY|0}} in the numerical pad of the keyboard.
* Or press {{KEY|0}} in the numerical pad of the keyboard.


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


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


<!--T:9-->
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 40: Line 46:
<translate>
<translate>


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

Revision as of 18:31, 23 November 2019

Std ViewIsometric

Menu location
View → Standard views → Axonometric → Isometric
Workbenches
All
Default shortcut
0
Introduced in version
-
See also
Orthographic camera

Description

Puts the camera in the 3D view in axonometric isometric view, with a view direction [-0.5773, 0.5773, -0.5773].

The isometric view looks slightly to the left (negative X), slightly to the back (positive Y), and slightly down (negative Z).

How to use

  • Go to the menu View → Standard views → Axonometric → Isometric.
  • Or press the Isometric button.
  • Or press 0 in the numerical pad of the keyboard.

Scripting

The isometric 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 FreeCAD as App
App.Gui.ActiveDocument.ActiveView.viewIsometric()

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