Std ViewIsometric/de: Difference between revisions

From FreeCAD Documentation
(Created page with "== Skripten==")
(Created page with "Die isometrische Ansicht kann über die Python Konsole eingestellt werden.")
Line 23: Line 23:
== Skripten==
== Skripten==


The isometric view can be set from the [[Python console|Python console]].
Die isometrische Ansicht kann über die [[Python console/de|Python Konsole]] eingestellt werden.


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.

Revision as of 09:40, 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).

Anwendung

  • Gehe zum Menü Ansicht → Standardansichten → Axonometrisch → Isometrisch.
  • Oder drücke die Isometrisch Taste.
  • Oder drücke 0 im Ziffernblock der Tastatur.

Skripten

Die isometrische Ansicht kann über die Python Konsole eingestellt werden.

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()