Std ViewIsometric/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "La Vue isométrique place la caméra dans la Vue 3D selon la projection [https://fr.wikipedia.org/wiki/Perspective_isom%C3%A9trique Per...")
No edit summary
Line 11: Line 11:
==Description==
==Description==


La [[Std ViewIsometric/fr|Vue isométrique]] place la caméra dans la [[3D view/fr|Vue 3D]] selon la projection [https://fr.wikipedia.org/wiki/Perspective_isom%C3%A9trique Perspective isométrique] avec une direction de vue {{incode|[-0.5773, 0.5773, -0.5773]}}.
La [[Std ViewIsometric/fr|Vue isométrique]] place la caméra dans la [[3D view/fr|Vue 3D]] selon la [https://fr.wikipedia.org/wiki/Perspective_isom%C3%A9trique Perspective isométrique] avec une direction de vue {{incode|[-0.5773, 0.5773, -0.5773]}}.


[[File:FreeCAD_views_front.svg]]
[[File:FreeCAD_views_front.svg]]

Revision as of 14:51, 1 December 2019

Std Vue isométrique

Emplacement du menu
Affichage → Vues standards → Axonometric → Isométrique
Ateliers
All
Raccourci par défaut
0
Introduit dans la version
-
Voir aussi
Vue orthographique, Vue dimétrique, Vue trimétrique

Description

La Vue isométrique place la caméra dans la Vue 3D selon la Perspective isométrique avec une direction de vue [-0.5773, 0.5773, -0.5773].

The isometric view looks slightly to the left (negative X), slightly to the back (positive Y), and slightly down (negative Z).

How to use

  • Go to the menu View → Standard views → Axonometric → Isometric.
  • Or press the Isometric button.
  • Or press 0 in the numerical pad of the keyboard.

Scripting

The isometric view can be set from the Python console.

It is a method of the ActiveView of the ActiveDocument. The ActiveView only exists when the graphical interface is available; it does not exist when FreeCAD is used in purely console mode.

import FreeCADGui as Gui
Gui.ActiveDocument.ActiveView.viewIsometric()

Gui.ActiveDocument.ActiveView.getViewDirection()