Std Vue de dessus

From FreeCAD Documentation
Revision as of 15:20, 1 December 2019 by David69 (talk | contribs) (Created page with "{{GuiCommand/fr |Name=Std ViewTop |Name/fr=Std Vue de dessus |MenuLocation=Affichage → Vues standards → Dessus |Workbenches=Tous |Shortcut=2 |SeeAlso=...")
Other languages:

Std Vue de dessus

Emplacement du menu
Affichage → Vues standards → Dessus
Ateliers
Tous
Raccourci par défaut
2
Introduit dans la version
-
Voir aussi
Vue de face, Vue droite

Description

Std ViewTop puts the camera in the 3D view looking down from above, in the direction of the negative Z axis, [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()