Std ViewBottom/it: Difference between revisions

From FreeCAD Documentation
(Created page with "* Andare nel menu {{MenuCommand|Visualizza → Viste standard → 16px Dal basso}}. * O premere il pulsante {{Button|File:...")
(Created page with "== Script ==")
Line 22: Line 22:
* O premere {{KEY|5}} nel tastierino numerico della tastiera.
* O premere {{KEY|5}} nel tastierino numerico della tastiera.


== Scripting ==
== Script ==


The bottom view can be set from the [[Python console|Python console]].
The bottom view can be set from the [[Python console|Python console]].

Revision as of 17:11, 24 November 2019

Other languages:

Vista dal basso

Posizione nel menu
Visualizza → Viste standard → Dal basso
Ambiente
Tutti
Avvio veloce
5
Introdotto nella versione
-
Vedere anche
Vista da dietro, Vista da sinistra

Descrizione

Vista dal basso orienta la fotocamera della Vista 3D che guarda dal basso verso l'alto, nella direzione dell'asse Z positivo, [0.0, 0.0, 1.0].

La vista dal basso imposta la telecamera dal basso verso l'alto, nella direzione dell'asse Z positivo.

Utilizzo

  • Andare nel menu Visualizza → Viste standard → Dal basso.
  • O premere il pulsante Dal basso.
  • O premere 5 nel tastierino numerico della tastiera.

Script

The bottom 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.viewBottom()

Gui.ActiveDocument.ActiveView.getViewDirection()