Mesh Import/it: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 20: Line 20:
==Descrizione==
==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/it|Mesh Feature]].
<div class="mw-translate-fuzzy">
Questo strumento consente di aggiungere un file [https://en.wikipedia.org/wiki/STL_(file_format) *.STL], [https://en.wikipedia.org/wiki/STL_(file_format)#ASCII_STL *.AST], *.BMS, [https://en.wikipedia.org/wiki/Wavefront_.obj_file *.OBJ], [http://en.wikipedia.org/wiki/OFF *.OFF], [http://web.mit.edu/ivlib/www/iv/files.html *.iv], [https://en.wikipedia.org/wiki/PLY_(file_format) *.PLY] al documento corrente.
</div>


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

Revision as of 17:04, 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.

Uso

  1. Cliccare su o scegliere Mesh Importa mesh... dal menu principale.
  2. Selezionare il file da importare.

Options

  • 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')