Visualizza: Vista dall'alto

From FreeCAD Documentation
Revision as of 18:12, 24 November 2019 by Renatorivo (talk | contribs) (Created page with "Vista dall'alto orienta la fotocamera della Vista 3D che guarda dall'alto verso il basso, nella direzione dell'asse Z negativo, {{incode|[0.0...")
Other languages:

Vista dall'alto

Posizione nel menu
Visualizza → Viste standard → Dall'alto
Ambiente
Tutti
Avvio veloce
2
Introdotto nella versione
-
Vedere anche
Vista frontale, Vista da destra

Descrizione

Vista dall'alto orienta la fotocamera della Vista 3D che guarda dall'alto verso il basso, nella direzione dell'asse Z negativo, [0.0, 0.0, -1.0].

The top view sets the camera looking down, in the direction of the negative Z axis.

How to use

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

Scripting

The top 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.viewTop()

Gui.ActiveDocument.ActiveView.getViewDirection()