Std OrthographicCamera/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/fr |Créer une nouvelle vue |Vue en perspective |Menu affichage |IconL=Std_ViewCreate.svg |Ico...")
No edit summary
Line 10: Line 10:
}}
}}


<div class="mw-translate-fuzzy">
{{GuiCommand/fr
{{GuiCommand/fr
|Name=Std OrthographicCamera
|Name=Std OrthographicCamera
|Name/fr=Std Vue orthographique
|Name/fr=Std Vue orthographique
|MenuLocation=[[Std View Menu/fr|Affichage]] → Vue orthographique
|MenuLocation=Affichage → Vue orthographique
|
|Workbenches=Tous
|Workbenches=Tous
|Shortcut= O
|Shortcut={{KEY|V}} {{KEY|O}}
|SeeAlso=[[Std PerspectiveCamera/fr|Vue en perspective]]
|SeeAlso=[[Std PerspectiveCamera/fr|Std Vue en perspective]]
}}
}}
</div>


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">

Revision as of 10:23, 14 April 2020

Std Vue orthographique

Emplacement du menu
Affichage → Vue orthographique
Ateliers
Tous
Raccourci par défaut
V O
Introduit dans la version
-
Voir aussi
Std Vue en perspective

Description

Met la caméra en mode d'affichage orthographique.

Orthographic est (selon Wikipedia) : ... un moyen de représenter un objet tridimensionnel en deux dimensions ...

Two cubes with the same dimensions in orthographic view

Utilisation

Choisissez Vue → Vue orthographique dans le menu supérieur.

  1. There are several ways to invoke the command:
    • Select the View → Orthographic view option from the menu.
    • Use the keyboard shortcut: V then O.

Notes

  • It is also possible to switch to orthographic view mode via the Mini-cube menu of the Navigation Cube.

Preferences

  • The camera type can be changed in the preferences: Edit → Preferences... → Display → 3D View → Camera type. The selected type will be used for all 3D views of all opened documents and also for new documents. See Preferences Editor.

Scripting

See also: FreeCAD Scripting Basics.

To change the view to orthographic use the setCameraType method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.setCameraType('Orthographic')
FreeCADGui.ActiveDocument.ActiveView.getCameraType()