Std ViewRotateLeft/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/ru |Std ViewLeft |Std ViewRotateRight |Std View Menu |IconL=Std_ViewLeft.svg |IconR=Std_ViewRotate...")
(Created page with "{{GuiCommand/ru |Name=Std ViewRotateLeft |Name/ru=Std ViewRotateLeft |MenuLocation=Вид → Стандартные виды → Повернуть влево |Workbenches=Al...")
Line 10: Line 10:
}}
}}


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



Revision as of 16:48, 7 May 2020

Other languages:

Std ViewRotateLeft

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

Description

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

Usage

  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

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