Std ViewRotateRight/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Utilizzo==")
(Created page with "==Script==")
Line 32: Line 32:
</div>
</div>


==Scripting==
==Script==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

Revision as of 20:37, 14 April 2020

Ruota a destra

Posizione nel menu
Visualizza → Viste standard → Ruota a destra
Ambiente
Tutti
Avvio veloce
Shift+Destra
Introdotto nella versione
-
Vedere anche
Ruota a sinistra

Descrizione

Questo strumento ruota la vista 3D verso destra (in senso orario) di incrementi di 90 gradi.

Utilizzo

Utilizzo

  • Premere Maiusc + Destra oppure andare al menu Visualizza → Viste standard → Ruota a destra.

Script

See also: FreeCAD Scripting Basics.

To rotate the view to the right use the viewRotateRight method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.viewRotateRight()
FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation()