Mesh Import/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>

<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
{{Docnav/it| |[[Mesh Export/it|Esporta mesh]]|[[Mesh_Workbench/it|Mesh]]|IconC=Workbench_Mesh.svg|IconR=Mesh_ExportMesh.png}}
{{Docnav/it| |[[Mesh Export/it|Esporta mesh]]|[[Mesh_Workbench/it|Mesh]]|IconC=Workbench_Mesh.svg|IconR=Mesh_ExportMesh.png}}
Line 10: Line 11:
<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
==Introduzione==
==Introduzione==
</div>
</div>


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 25: Line 26:
</div>
</div>


==Link==
==Options==

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

==Preferences==

* The last used file location is stored: {{MenuCommand|Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath}}.

==Properties==

See [[Mesh_Feature|Mesh Feature]].

==Scripting==

{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

To import a mesh file use the {{incode|insert}} method of the Mesh module.


{{Code|code=
import Mesh
Mesh.insert('D:/testfiles/cylinder.stl')
}}


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 34: Line 55:
{{Mesh Tools navi{{#translation:}}}}
{{Mesh Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Revision as of 16:56, 3 July 2020

Importa mesh

Posizione nel menu
Mesh → Importa mesh...
Ambiente
Mesh
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Std Import

Introduzione

Questo strumento consente di aggiungere un file *.STL, *.AST, *.BMS, *.OBJ, *.OFF, *.iv, *.PLY al documento corrente.

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