Std ViewLeft/it: Difference between revisions

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


==Description==
==Descrizione==


[[Std_ViewLeft|Std ViewLeft]] puts the camera in the [[3D view|3D view]] looking from the left, towards the right, in the direction of the positive X axis, {{incode|[1.0, 0.0, 0.0]}}.
[[Std_ViewLeft|Std ViewLeft]] puts the camera in the [[3D view|3D view]] looking from the left, towards the right, in the direction of the positive X axis, {{incode|[1.0, 0.0, 0.0]}}.

Revision as of 17:47, 24 November 2019

Other languages:

Vista da sinistra

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

Descrizione

Std ViewLeft puts the camera in the 3D view looking from the left, towards the right, in the direction of the positive X axis, [1.0, 0.0, 0.0].

The left view sets the camera looking right, in the direction of the positive X axis.

How to use

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

Scripting

The left 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.viewLeft()

Gui.ActiveDocument.ActiveView.getViewDirection()