Mesh Import/hu: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav
{{Docnav
|
|
|[[Mesh Export|Export Mesh]]
|[[Mesh_Export|Mesh Export]]
|[[Mesh_Workbench|Mesh]]
|[[Mesh_Workbench|Mesh]]
|IconL=
|IconC=Workbench_Mesh.svg
|IconR=Mesh_Export.svg
|IconR=Mesh_Export.svg
|IconC=Workbench_Mesh.svg
}}
}}


Line 14: Line 16:
<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
==Bemutatás==
==Bemutatás==
</div>
</div>


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 29: Line 31:
</div>
</div>


==Hivatkozások==
==Preferences==

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

==Properties==

See: [[Mesh_Feature|Mesh Feature]].

==Scripting==

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




{{Docnav
{{Docnav
|
|
|[[Mesh Export|Export Mesh]]
|[[Mesh_Export|Mesh Export]]
|[[Mesh_Workbench|Mesh]]
|[[Mesh_Workbench|Mesh]]
|IconL=
|IconC=Workbench_Mesh.svg
|IconR=Mesh_Export.svg
|IconR=Mesh_Export.svg
|IconC=Workbench_Mesh.svg
}}
}}


{{Mesh Tools navi{{#translation:}}}}
{{Mesh Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Revision as of 21:11, 21 July 2020

Mesh ImportMesh

Menu location
Hálók → Háló importálása
Workbenches
Háló
Default shortcut
None
Introduced in version
-
See also
Std Import

Bemutatás

Ez az eszköz lehetővé teszi egy *.STL, *.AST, *.BMS, *.OBJ, *.OFF, *.iv, *.PLY fájl hozzáadását a jelenlegi dokumentumhoz.

Használat

  1. Kattintson a ikonra vagy válassza a Hálók Háló importálása… menüpontot a felső menüből.
  2. Válassza ki az importálandó fájlt.

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