Std ViewRotateRight/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Created page with "==Программирование==")
 
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{GuiCommand
<div class="mw-translate-fuzzy">
|Name=Std_RotateRight
{{Docnav/ru
|MenuLocation=[[Std View Menu|View]] → Standard views → Rotate Right
|[[Std_ViewRotateLeft/ru|Команда "Повернуть влево"]]
|Shortcut= Shift + Right
|[[Std_FreezeViews/ru|Меню "Положения камеры"]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewRotateLeft.svg
|IconR=
|IconC=Freecad.svg
}}
</div>

{{GuiCommand/ru
|Name=Std ViewRotateRight
|Name/ru=Std ViewRotateRight
|MenuLocation=Вид → Стандартные виды → Повернуть вправо
|Workbenches=All
|Workbenches=All
|Shortcut={{KEY|Shift}}+{{KEY|Right}}
|SeeAlso=[[Std_ViewRotateLeft/ru|Std ViewRotateLeft]]
}}
}}


==Description==
<span id="Description"></span>
==Описание==


This tool rotates the 3D view toward the right (clockwise) by 90-degree increments.
The '''Std ViewRotateRight''' command rotates the camera in the active [[3D_view|3D view]] around the view direction in 90-degree increments towards the right (clockwise).


==Usage==
<span id="Usage"></span>
==Применение==


# There are several ways to invoke the command:
* Press {{KEY|Shift}} + {{KEY|Right}} or go to {{MenuCommand|View → Standard views → Rotate Right}}.
#* Select the {{MenuCommand|View → Standard views → [[Image:Std_ViewRotateRight.svg|16px]] Rotate Right}} option from the menu.
#* Select the {{MenuCommand|Standard views → [[Image:Std_ViewRotateRight.svg|16px]] Rotate Right}} option from the [[3D_view|3D view]] context menu.
#* Use the keyboard shortcut: {{KEY|Shift}}+{{KEY|Right}}.

<span id="Scripting"></span>
==Программирование==

{{Emphasis|Смотрите так же:}} [[FreeCAD_Scripting_Basics/ru|Основы составления скриптов в FreeCAD]].

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


<div class="mw-translate-fuzzy">
{{Docnav/ru
|[[Std_ViewRotateLeft/ru|Команда "Повернуть влево"]]
|[[Std_FreezeViews/ru|Меню "Положения камеры"]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewRotateLeft.svg
|IconR=
|IconC=Freecad.svg
}}
</div>


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

Latest revision as of 15:52, 5 March 2023

Other languages:

Std ViewRotateRight

Системное название
Std ViewRotateRight
Расположение в меню
Вид → Стандартные виды → Повернуть вправо
Верстаки
All
Быстрые клавиши
Shift+Right
Представлено в версии
-
См. также
Std ViewRotateLeft

Описание

The Std ViewRotateRight command rotates the camera in the active 3D view around the view direction in 90-degree increments towards the right (clockwise).

Применение

  1. There are several ways to invoke the command:
    • Select the View → Standard views → Rotate Right option from the menu.
    • Select the Standard views → Rotate Right option from the 3D view context menu.
    • Use the keyboard shortcut: Shift+Right.

Программирование

Смотрите так же: Основы составления скриптов в FreeCAD.

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