Visualizza: Vista laterale destra

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

Vista da destra

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

Descrizione

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

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

Utilizzo

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

Script

The right 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.viewRight()

Gui.ActiveDocument.ActiveView.getViewDirection()