3D view/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "Pour plus d'informations, voir la documentation de l'utilisateur expert : * Scéne graphique, description de Coin3D. * Pivy, utilisation de Coin3...")
(Created page with "{{Interface/fr}} {{Userdocnavi/fr}}")
Line 55: Line 55:
* [[Third_Party_Libraries/fr|Bibliothèques tierces]] utilisées par FreeCAD.
* [[Third_Party_Libraries/fr|Bibliothèques tierces]] utilisées par FreeCAD.


{{Interface}}
{{Interface/fr}}
{{Userdocnavi}}
{{Userdocnavi/fr}}

Revision as of 20:09, 9 October 2019

Introduction

La vue 3D de FreeCAD est une instance d’une scène graphique Coin3D. Coin3D est une bibliothèque qui implémente le standard de description de scène OpenInventor 2.1.

Certaines propriétés de la vue, telles que la couleur d'arrière-plan, le style de navigation à la souris et les étapes de zoom, peuvent être configurées dans l'éditeur de préférences.

Par défaut, la vue 3D affiche un petit widget avec les axes de coordonnées et le cube de navigation, également avec des axes de coordonnées. La grille peut être affichée et configurée en chargeant l'atelier Draft.

Actions

Remarque : les actions de lien ont été ajoutées dans la version 0.19.

Comme la vue arborescente répertorie la plupart des objets visibles dans la vue 3D, la plupart des actions sont identiques à celles pouvant être exécutées à partir de la vue arborescente.

Lorsque l'atelier Start par défaut est actif, un clic droit sur la vue 3D n’affiche qu’une commande :

  • Styles de navigation : différents styles de boutons à utiliser avec une souris 3 boutons ou un trackpad pour ordinateur portable.

However, once a Workbench is loaded, there are additional commands:

Additionally, depending on the workbench and object that is active, other contextual commands may become available.

For example, with the Part Workbench and one object selected:

  • Appearance: launches the dialog to change color and sizes of lines and vertices, and color of faces.
  • Toggle visibility: makes the object visible or invisible in the 3D view.
  • Toggle selectability: makes the object no longer selectable in the 3D view; use again this command to cancel its effect. It sets the object's Selectable attribute to true or false. Change the property by toggling VueSelectable in the property editor.
  • Go to selection: expand the tree view to show the selected object in the hierarchy.
  • Random color: assigns a random color to the object. It sets the object's ShapeColor attribute to a tuple (r,g,b) with tree random floats between 0 and 1. Change the property by modifying VueShape Color in the property editor.
  • Delete: removes the object from the document, and from the 3D view, by calling the document's removeObject() method.

Another example, with the Draft Workbench and one object selected, it shows the same commands as with the Part Workbench, but also:

Détails

FreeCAD utilise la bibliothèque Quarter pour utiliser Coin3D dans un environnement Qt.

Il est possible d'interagir directement avec le scénario 3D depuis la console Python à l'aide de la bibliothèque Python Pivy.

Pour plus d'informations, voir la documentation de l'utilisateur expert :

Template:Interface/fr