Std ViewFront/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/it |Name=Std ViewFront |Name/it=Vista frontale |MenuLocation=Visualizza → Viste standard → Di fronte |Workbenches=Tutti |Shortcut=1 |SeeA...")
(Created page with "==Descrizione==")
Line 9: Line 9:
}}
}}


==Description==
==Descrizione==


[[Std_ViewFront|Std ViewFront]] puts the camera in the [[3D view|3D view]] looking towards the back from the front, in the direction of the positive Y axis, {{incode|[0.0, 1.0, 0.0]}}.
[[Std_ViewFront|Std ViewFront]] puts the camera in the [[3D view|3D view]] looking towards the back from the front, in the direction of the positive Y axis, {{incode|[0.0, 1.0, 0.0]}}.

Revision as of 17:24, 24 November 2019

Other languages:

Vista frontale

Posizione nel menu
Visualizza → Viste standard → Di fronte
Ambiente
Tutti
Avvio veloce
1
Introdotto nella versione
-
Vedere anche
Vista dall'alto, Vista da destra

Descrizione

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

The front view sets the camera looking back, in the direction of the positive Y axis.

How to use

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

Scripting

The front 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.viewFront()

Gui.ActiveDocument.ActiveView.getViewDirection()