Std ViewRear/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Caption|La vue arrière oriente la caméra vers l'avant, dans la direction de l'axe Y négatif.}}")
(Created page with "==Utilisation==")
Line 16: Line 16:
{{Caption|La vue arrière oriente la caméra vers l'avant, dans la direction de l'axe Y négatif.}}
{{Caption|La vue arrière oriente la caméra vers l'avant, dans la direction de l'axe Y négatif.}}


==How to use==
==Utilisation==


* Go to the menu {{MenuCommand|View → Standard views → [[File:Std_ViewRear.svg|16px]] [[Std_ViewRear|Rear]]}}.
* Go to the menu {{MenuCommand|View → Standard views → [[File:Std_ViewRear.svg|16px]] [[Std_ViewRear|Rear]]}}.

Revision as of 15:10, 1 December 2019

Other languages:

Std Vue de l'arrière

Emplacement du menu
Affichage → Vues standards → Arrière
Ateliers
All
Raccourci par défaut
4
Introduit dans la version
-
Voir aussi
Vue de dessous, Vue de gauche

Description

La Vue de l'arrière place la caméra dans la vue 3D en regardant de l'arrière vers l'avant, dans la direction de l'axe Y négatif, [0.0, -1.0, 0.0].

La vue arrière oriente la caméra vers l'avant, dans la direction de l'axe Y négatif.

Utilisation

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

Scripting

The rear 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.viewRear()

Gui.ActiveDocument.ActiveView.getViewDirection()