Std ViewRotateRight/ro: Difference between revisions

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

<div class="mw-translate-fuzzy">
{{Docnav
{{GuiCommand|Name=Std_RotateRight|Workbenches=All|SeeAlso=...}}
|[[Std_ViewRotateLeft|ViewRotateLeft]]
</div>
|[[Std_StoreWorkingView|StoreWorkingView]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewRotateLeft.svg
|IconR=
|IconC=Freecad.svg
}}

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


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 14: Line 28:
==Usage==
==Usage==


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

==Scripting==

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

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

{{Code|code=
import FreeCADGui

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


{{Docnav
|[[Std_ViewRotateLeft|ViewRotateLeft]]
|[[Std_StoreWorkingView|StoreWorkingView]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_ViewRotateLeft.svg
|IconR=
|IconC=Freecad.svg
}}


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

Latest revision as of 17:39, 7 October 2022

Std ViewRotateRight

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

Rezumat

De completat

Usage

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

Scripting

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