Visualizza: Vista da dietro

From FreeCAD Documentation
Revision as of 17:58, 24 November 2019 by Renatorivo (talk | contribs) (Created page with "{{Caption|La vista posteriore imposta la fotocamera da dietro in avanti, nella direzione dell'asse Y negativo.}}")
Other languages:

Vista da dietro

Posizione nel menu
Visualizza → Viste standard → Da dietro
Ambiente
Tutti
Avvio veloce
4
Introdotto nella versione
-
Vedere anche
Vista dal absso, Vista da sinistra

Descrizione

Vista da dietro orienta la fotocamera della Vista 3D che guarda dalla parte posteriore verso la parte anteriore, nella direzione dell'asse Y negativo, [0.0, -1.0, 0.0].

La vista posteriore imposta la fotocamera da dietro in avanti, nella direzione dell'asse Y negativo.

How to use

  • Go to the menu View → Standard views → Rear.
  • Or press the Rear button.
  • Or press 4 in the numerical pad of the keyboard.

Scripting

The rear 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.viewRear()

Gui.ActiveDocument.ActiveView.getViewDirection()