Std ViewRear/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/it |Name=Std ViewRear |Name/it=Vista da dietro |MenuLocation=Visualizza → Viste standard → Da dietro |Workbenches=Tutti |Shortcut=4 |SeeA...")
(Created page with "==Descrizione==")
Line 9: Line 9:
}}
}}


==Description==
==Descrizione==


[[Std_ViewRear|Std ViewRear]] puts the camera in the [[3D view|3D view]] looking towards the front from the back, in the direction of the negative Y axis, {{incode|[0.0, -1.0, 0.0]}}.
[[Std_ViewRear|Std ViewRear]] puts the camera in the [[3D view|3D view]] looking towards the front from the back, in the direction of the negative Y axis, {{incode|[0.0, -1.0, 0.0]}}.

Revision as of 17:55, 24 November 2019

Other languages:

Vista da dietro

Posizione nel menu
Visualizza → Viste standard → Da dietro
Ambiente
Tutti
Avvio veloce
4
Introdotto nella versione
-
Vedere anche
Vista dal absso, Vista da sinistra

Descrizione

Std ViewRear puts the camera in the 3D view looking towards the front from the back, in the direction of the negative Y axis, [0.0, -1.0, 0.0].

The rear view sets the camera looking to the front, in the direction of the negative Y axis.

How to use

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