Std ViewIsometric/de: Difference between revisions

From FreeCAD Documentation
(Created page with "Der Std AnsichtIsometrisch Befehl versetzt die Kamera in die 3D Ansicht in [https://en.wikipedia.org/wiki/Isometric_projection axonomet...")
(Created page with "{{Caption|Die isometrische Ansicht schaut leicht nach links (negativ X), leicht nach hinten (positiv Y) und leicht nach unten (negativ Z).}}")
Line 13: Line 13:


[[File:FreeCAD_views_front.svg]]
[[File:FreeCAD_views_front.svg]]
{{Caption|The isometric view looks slightly to the left (negative X), slightly to the back (positive Y), and slightly down (negative Z).}}
{{Caption|Die isometrische Ansicht schaut leicht nach links (negativ X), leicht nach hinten (positiv Y) und leicht nach unten (negativ Z).}}


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

Revision as of 09:38, 1 April 2020

Std ViewIsometric

Menüeintrag
Ansicht → Standardansichten → Axonometrisch → Isometrisch
Arbeitsbereich
Alle
Standardtastenkürzel
0
Eingeführt in Version
-
Siehe auch
Orthographic Kamera, AnsichtDimetrisch, AnsichtTrimetrisch

Beschreibung

Der Std AnsichtIsometrisch Befehl versetzt die Kamera in die 3D Ansicht in axonometrische isometrische Projektion, mit einer Blickrichtung [-0.5773, 0.5773, -0.5773].

Die isometrische Ansicht schaut leicht nach links (negativ X), leicht nach hinten (positiv Y) und leicht nach unten (negativ Z).

Kurzanleitung

  • 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 FreeCADGui as Gui
Gui.ActiveDocument.ActiveView.viewIsometric()

Gui.ActiveDocument.ActiveView.getViewDirection()