Std ViewIsometric/it: Difference between revisions

From FreeCAD Documentation
(Created page with "== Utilizzo ==")
(Created page with "{{Std Base/it}} {{Userdocnavi/it}}")
Line 36: Line 36:
}}
}}


{{Std Base}}
{{Std Base/it}}
{{Userdocnavi}}
{{Userdocnavi/it}}
{{clear}}
{{clear}}

Revision as of 18:38, 23 November 2019

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

Utilizzo

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