Std ViewRotateLeft/ro: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

<div class="mw-translate-fuzzy">
{{Docnav
{{GuiCommand|Name=Std_RotateLeft|Workbenches=All|SeeAlso=...}}
|[[Std_ViewLeft|ViewLeft]]
</div>
|[[Std_ViewRotateRight|ViewRotateRight]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewLeft.svg
|IconR=Std_ViewRotateRight.svg
|IconC=Freecad.svg
}}

{{GuiCommand
|Name=Std ViewRotateLeft
|MenuLocation=View → Standard views → Rotate Left
|Workbenches=All
|Shortcut={{KEY|Shift}}+{{KEY|Left}}
|SeeAlso=[[Std_ViewRotateRight|Std ViewRotateRight]]
}}


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 11: Line 25:
De completat
De completat
</div>
</div>

==Usage==


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
* Press {{KEY|Shift}} + {{KEY|Left}} or go to {{MenuCommand|View → Standard views → Rotate Left}}.
{{Template:UnfinishedDocu}}
</div>
</div>


==Scripting==
{{Std Base}}

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

To rotate the view to the left use the {{incode|viewRotateLeft}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.

{{Code|code=
import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.viewRotateLeft()
FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation()
}}

{{Docnav
|[[Std_ViewLeft|ViewLeft]]
|[[Std_ViewRotateRight|ViewRotateRight]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewLeft.svg
|IconR=Std_ViewRotateRight.svg
|IconC=Freecad.svg
}}

{{Std Base navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}
{{clear}}

Latest revision as of 15:23, 5 November 2021

Std ViewRotateLeft

Menu location
View → Standard views → Rotate Left
Workbenches
All
Default shortcut
Shift+Left
Introduced in version
-
See also
Std ViewRotateRight

Rezumat

De completat

Usage

  • Press Shift + Left or go to View → Standard views → Rotate Left.

Scripting

See also: FreeCAD Scripting Basics.

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

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.viewRotateLeft()
FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation()