Visualizza: Vista laterale da sinistra

From FreeCAD Documentation
Revision as of 17:51, 24 November 2019 by Renatorivo (talk | contribs) (Created page with "== Script ==")
Other languages:

Vista da sinistra

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

Descrizione

Vista da sinistra orienta la fotocamera della Vista 3D che guarda da sinistra verso destra, nella direzione dell'asse X positivo, [1.0, 0.0, 0.0].

La vista da sinistra imposta la telecamera da sinistra verso destra, nella direzione dell'asse X positivo.

Utilizzo

  • Andare nel menu Visualizza → Viste standard → Da sinistra.
  • O premere il pulsante Da sinistra
  • O premere 6 nel tastierino numerico della tastiera.

Script

The left 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.viewLeft()

Gui.ActiveDocument.ActiveView.getViewDirection()