Std ViewRotateLeft/ru: Difference between revisions

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

{{GuiCommand
{{Docnav/ru
|Name=Std_RotateLeft
|[[Std_ViewLeft/ru|Команда "Слева"]]
|MenuLocation=[[Std View Menu|View]] → Standard views → Rotate Left
|[[Std_ViewRotateRight/ru|Команда "Повернуть вправо"]]
|Shortcut= Shift + Left
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewLeft.svg
|IconR=Std_ViewRotateRight.svg
|IconC=Freecad.svg
}}

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


==Описание==
==Description==


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


==Применение==
==How to use==

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

==Scripting==

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

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/ru
|[[Std_ViewLeft/ru|Команда "Слева"]]
|[[Std_ViewRotateRight/ru|Команда "Повернуть вправо"]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewLeft.svg
|IconR=Std_ViewRotateRight.svg
|IconC=Freecad.svg
}}


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

Latest revision as of 20:37, 4 August 2021

Other languages:

Std ViewRotateLeft

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

Описание

The Std ViewRotateLeft command rotates the camera in the active 3D view around the view direction in 90-degree increments towards the left (counterclockwise).

Применение

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

Scripting

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

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