Std ViewRotateLeft/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "==Utilisation==")
No edit summary
Line 25: Line 25:
==Utilisation==
==Utilisation==


# Il existe plusieurs façons d'appeler la commande:
<div class="mw-translate-fuzzy">
#* Sélectionnez l'option {{MenuCommand|Affichage → Vues standards → [[Image:Std_ViewRotateLeft.svg|16px]] Rotation à gauche}} dans le menu.
==Utilisation==
#* Sélectionnez l'option {{MenuCommand|Vues standards → [[Image:Std_ViewRotateLeft.svg|16px]] Rotation à gauche}} dans le menu contextuel de la [[3D view/fr|vue 3D]].
* Appuyer sur {{KEY|Shift}} + {{KEY|Gauche}} ou aller dans le menu {{MenuCommand|Affichage → Vues standards → Rotation à gauche}}.
#* Utilisez le raccourci clavier: {{KEY|Shift}}+{{KEY|Gauche}}.
</div>


==Scripting==
==Scripting==

Revision as of 14:28, 25 April 2020

Std Rotation à gauche

Emplacement du menu
Affichage → Vues standards‏‎ → Rotation à gauche
Ateliers
Tous
Raccourci par défaut
Shift+Left
Introduit dans la version
-
Voir aussi
Std Rotation à droite

Description

La commande Std Rotation à gauche fait pivoter la caméra dans la vue 3D active dans la direction de la vue par incréments de 90 degrés vers la gauche (dans le sens antihoraire).

Utilisation

  1. Il existe plusieurs façons d'appeler la commande:
    • Sélectionnez l'option Affichage → Vues standards → Rotation à gauche dans le menu.
    • Sélectionnez l'option Vues standards → Rotation à gauche dans le menu contextuel de la vue 3D.
    • Utilisez le raccourci clavier: Shift+Gauche.

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