Visualizza: Assonometria isometrica

From FreeCAD Documentation
Revision as of 18:38, 23 November 2019 by Renatorivo (talk | contribs) (Created page with "{{Caption|La vista isometrica è orientata a sinistra (X negativo), all'indietro (Y positivo) e verso il basso (Z negativo).}}")

Vista isometrica

Posizione nel menu
Visualizza → Viste standard → Assonometria → Isometrica
Ambiente
Tutti
Avvio veloce
0
Introdotto nella versione
-
Vedere anche
Vista ortografica

Descrizione

Mette la fotocamera della Vista 3D in vista assonometria isometrica, con una direzione della vista [-0.5773, 0.5773, -0.5773].

La vista isometrica è orientata a sinistra (X negativo), all'indietro (Y positivo) e verso il basso (Z negativo).

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