Std: Odwróć widok w prawo

From FreeCAD Documentation
Revision as of 17:18, 20 June 2022 by Kaktus (talk | contribs) (Created page with "{{GuiCommand/pl |Name=Std ViewRotateRight |Name/pl=Std: Odwróć widok w prawo |MenuLocation=Widok → Widoki standardowe → Odwróć w prawo |Workbenches=wszystkie |Shortcut...")

Std: Odwróć widok w prawo

Lokalizacja w menu
Widok → Widoki standardowe → Odwróć w prawo
Środowisko pracy
wszystkie
Domyślny skrót
Shift + Prawo
Wprowadzono w wersji
-
Zobacz także
Odwróć widok w lewo

Description

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

Usage

  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.

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