Std ViewBottom/it: Difference between revisions

From FreeCAD Documentation
(Created page with "Visualizza: Dal basso")
 
(Created page with "{{GuiCommand/it |Name=Std ViewBottom |Name/it=Vista dal basso |MenuLocation=Visualizza → Viste standard → Dal basso |Workbenches=Tutti |Shortcut=5 |Se...")
Line 1: Line 1:
<languages/>
<languages/>
{{GuiCommand
{{GuiCommand/it
|Name=Std ViewBottom
|Name=Std ViewBottom
|Name/it=Vista dal basso
|MenuLocation=[[Std View Menu|View]] → Standard viewsBottom
|MenuLocation=[[Std View Menu/it|Visualizza]] → Viste standardDal basso
|Workbenches=All
|Workbenches=Tutti
|Shortcut=5
|Shortcut=5
|SeeAlso=[[Std_ViewRear|ViewRear]], [[Std_ViewLeft|ViewLeft]]
|SeeAlso=[[Std_ViewRear/it|Vista da dietro]], [[Std_ViewLeft/it|Vista da sinistra]]
}}
}}



Revision as of 17:01, 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

Description

Std ViewBottom puts the camera in the 3D view looking down from above, in the direction of the positive Z axis, [0.0, 0.0, 1.0].

The bottom view sets the camera looking up, in the direction of the positive Z axis.

How to use

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

Scripting

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()