Mesh Import/it: Difference between revisions

From FreeCAD Documentation
No edit summary
(Created page with "==Opzioni==")
Line 32: Line 32:
# Premere il pulsante {{Button|Apri}}.
# Premere il pulsante {{Button|Apri}}.


==Options==
==Opzioni==


* Press {{KEY|Esc}} or the {{Button|Cancel}} button to abort the command.
* Press {{KEY|Esc}} or the {{Button|Cancel}} button to abort the command.

Revision as of 17:10, 3 July 2020

Importa mesh

Posizione nel menu
Mesh → Importa mesh...
Ambiente
Mesh
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Importa, Apri, Importazione e Esportazione

Descrizione

Il comando Importa mesh importa la geometria da un formato file mesh nel documento attivo. Sono supportati diversi formati di file. Il comando crea un oggetto mesh non parametrico, una Mesh Feature.

Utilizzo

  1. Esistono diversi modi per invocare il comando:
    • Premere il pulsante Importa mesh.
    • Selezionare l'opzione Mesh → Importa mesh... dal menu.
    • Selezionare l'opzione Importa mesh... dal menu contestuale della vista ad albero o della vista 3D. Questa opzione è disponibile solo se è stato selezionato un oggetto mesh esistente. Notare che l'oggetto selezionato non viene effettivamente utilizzato o modificato dal comando.
  2. Facoltativamente, selezionare il formato file corretto nella finestra di dialogo.
  3. Selezionare un file.
  4. Premere il pulsante Apri.

Opzioni

  • Press Esc or the Cancel button to abort the command.

Preferences

  • The last used file location is stored: Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath.

Properties

See Mesh Feature.

Scripting

See also: FreeCAD Scripting Basics.

To import a mesh file use the insert method of the Mesh module.

import Mesh
Mesh.insert('D:/testfiles/cylinder.stl')