Vista 3D

From FreeCAD Documentation
Revision as of 10:17, 20 November 2019 by Renatorivo (talk | contribs) (Created page with "Dopo aver caricato un Ambiente di lavoro, sono disponibili comandi aggiuntivi: * {{MenuCommand|Azioni link}}: Crea un link. ** {{MenuCom...")

Introduzione

La Vista 3D di FreeCAD è un'istanza di una scena grafica di Coin3D. Coin3D è una libreria che implementa lo standard di descrizione della scena OpenInventor 2.1.

Alcune proprietà della vista, come il colore di sfondo, lo stile di navigazione con il mouse e i passi dello zoom, possono essere configurate con l'editor delle preferenze.

Per impostazione predefinita, la vista 3D mostra un piccolo widget con gli assi delle coordinate e il cubo di navigazione anche esso con gli assi delle coordinate; la griglia può essere visualizzata e configurata caricando l'ambiente Draft.

Azioni

Note: le azioni di collegamento sono state aggiunte nella versione 0.19.

Poiché la vista ad albero elenca la maggior parte degli oggetti che sono visibili nella vista 3D, molte delle azioni sono uguali a quelle che possono essere eseguite dalla vista ad albero.

Quando è attivo l'ambiente predefinito Start, il clic destro sulla vista 3D mostra un solo comando:

  • Stile di navigazione: permette di scegliere lo stile dei pulsanti da utilizzare con un mouse a 3 pulsanti o un trackpad per laptop.

Dopo aver caricato un Ambiente di lavoro, sono disponibili comandi aggiuntivi:

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 VistaSelectable 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 VistaShape 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:

Details

FreeCAD uses the Quarter library to use Coin3D in a Qt environment.

It is possible to interact directly with the 3D view scenegraph from the Python console by using the Python library Pivy.

For more information see the power user documentation:

Template:Interface/it