Visualizza: Vista frontale

From FreeCAD Documentation
Revision as of 17:28, 24 November 2019 by Renatorivo (talk | contribs) (Created page with "{{Caption|La vista frontale imposta la telecamera nella direzione dell'asse Y positivo.}}")
Other languages:

Vista frontale

Posizione nel menu
Visualizza → Viste standard → Di fronte
Ambiente
Tutti
Avvio veloce
1
Introdotto nella versione
-
Vedere anche
Vista dall'alto, Vista da destra

Descrizione

Vista di fronte orienta la fotocamera della Vista 3D che guarda verso la parte posteriore dalla parte anteriore, nella direzione dell'asse Y positivo, [0.0, 1.0, 0.0].

La vista frontale imposta la telecamera nella direzione dell'asse Y positivo.

How to use

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

Scripting

The front 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.viewFront()

Gui.ActiveDocument.ActiveView.getViewDirection()