Std ViewBottom: Difference between revisions

From FreeCAD Documentation
(→‎Description: File:FreeCAD_views_rear.svg)
(Marked this version for translation)
Line 1: Line 1:
<languages/>
<languages/>
<translate>
<translate>
<!--T:11-->
{{GuiCommand
{{GuiCommand
|Name=Std ViewBottom
|Name=Std ViewBottom
Line 9: Line 10:
}}
}}


==Description==
==Description== <!--T:12-->


<!--T:13-->
[[Std_ViewBottom|Std ViewBottom]] puts the camera in the [[3D view|3D view]] looking down from above, in the direction of the positive Z axis, {{incode|[0.0, 0.0, 1.0]}}.
[[Std_ViewBottom|Std ViewBottom]] puts the camera in the [[3D view|3D view]] looking down from above, in the direction of the positive Z axis, {{incode|[0.0, 0.0, 1.0]}}.


Line 16: Line 18:
[[File:FreeCAD_views_rear.svg]]
[[File:FreeCAD_views_rear.svg]]
<translate>
<translate>
<!--T:14-->
{{Caption|The bottom view sets the camera looking up, in the direction of the positive Z axis.}}
{{Caption|The bottom view sets the camera looking up, in the direction of the positive Z axis.}}


==How to use==
==How to use== <!--T:15-->


<!--T:16-->
* Go to the menu {{MenuCommand|View → Standard views → [[File:Std_ViewBottom.svg|16px]] [[Std_ViewBottom|Bottom]]}}.
* Go to the menu {{MenuCommand|View → Standard views → [[File:Std_ViewBottom.svg|16px]] [[Std_ViewBottom|Bottom]]}}.
* Or press the {{Button|[[File:Std_ViewBottom.svg|16px]] [[Std_ViewBottom|Bottom]]}} button.
* Or press the {{Button|[[File:Std_ViewBottom.svg|16px]] [[Std_ViewBottom|Bottom]]}} button.
* Or press {{KEY|5}} in the numerical pad of the keyboard.
* Or press {{KEY|5}} in the numerical pad of the keyboard.


== Scripting ==
== Scripting == <!--T:17-->


<!--T:18-->
The bottom view can be set from the [[Python console|Python console]].
The bottom view can be set from the [[Python console|Python console]].


<!--T:19-->
It is a method of the {{incode|ActiveView}} of the {{incode|ActiveDocument}}. The {{incode|ActiveView}} only exists when the graphical interface is available; it does not exist when FreeCAD is used in purely console mode.
It is a method of the {{incode|ActiveView}} of the {{incode|ActiveDocument}}. The {{incode|ActiveView}} only exists when the graphical interface is available; it does not exist when FreeCAD is used in purely console mode.



Revision as of 15:43, 24 November 2019

Std ViewBottom

Menu location
View → Standard views → Bottom
Workbenches
All
Default shortcut
5
Introduced in version
-
See also
ViewRear, ViewLeft

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