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)
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav| |[[Mesh Export|Export Mesh]]|[[Mesh_Workbench|Mesh]]|IconC=Workbench_Mesh.svg|IconR=Mesh_ExportMesh.png}}


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

<div class="mw-translate-fuzzy">
{{GuiCommand|Name=Mesh ImportMesh|MenuLocation=Hálók → Háló importálása|Workbenches=[[Mesh Workbench|Háló]]|SeeAlso=[[Std_Import|Std Import]]}}
{{GuiCommand|Name=Mesh ImportMesh|MenuLocation=Hálók → Háló importálása|Workbenches=[[Mesh Workbench|Háló]]|SeeAlso=[[Std_Import|Std Import]]}}
</div>


<div class="mw-translate-fuzzy">
==Bemutatás==
==Bemutatás==
</div>


<div class="mw-translate-fuzzy">
Ez az eszköz lehetővé teszi egy [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] fájl hozzáadását a jelenlegi dokumentumhoz.
Ez az eszköz lehetővé teszi egy [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] fájl hozzáadását a jelenlegi dokumentumhoz.
</div>


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 17: 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=
<br />
import Mesh
Mesh.insert('D:/testfiles/cylinder.stl')
}}


{{Docnav| |[[Mesh Export|Export Mesh]]|[[Mesh_Workbench|Mesh]]|IconC=Workbench_Mesh.svg|IconR=Mesh_ExportMesh.png}}


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


{{Mesh Tools navi{{#translation:}}}}
{{Userdocnavi}}
{{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')