Skip to content

Latest commit

 

History

History
48 lines (28 loc) · 1.27 KB

Std_ViewRotateLeft.md

File metadata and controls

48 lines (28 loc) · 1.27 KB
Error in user YAML: (<unknown>): did not find expected alphabetic or numeric character while scanning an alias at line 5 column 14
---
- GuiCommand:
   Name: Std ViewRotateLeft
   MenuLocation: View -> Standard views -> Rotate Left
   Workbenches: All
   Shortcut: **Shift**+**Left**
   SeeAlso: Std_ViewRotateRight
---

Std ViewRotateLeft

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

{{Std Base navi}}


documentation index > Std ViewRotateLeft