Std ViewIsometric

From FreeCAD Documentation
Revision as of 23:25, 20 November 2019 by Vocx (talk | contribs) (→‎How to use: 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.)

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.

Perspective on the left, orthographic on the right.

How to use

  1. Go to the menu View → Standard views → Axonometric → Isometric.
  2. Or press the Isometric button.

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